socialforge/db/migrate/20160111065137_add_attachme...

6 lines
158 B
Ruby

class AddAttachmentsCountToProject < ActiveRecord::Migration
def change
add_column :projects, :attachments_count, :integer, :default => false
end
end