6 lines
158 B
Ruby
6 lines
158 B
Ruby
|
class AddAttachmentsCountToProject < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :projects, :attachments_count, :integer, :default => false
|
||
|
end
|
||
|
end
|