parent
762ebb150b
commit
f3b732460c
@ -0,0 +1,5 @@
|
||||
class AddIssuesCountToProject < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :projects, :issues_count, :integer, :default => false
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class AddAttachmentsCountToProject < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :projects, :attachments_count, :integer, :default => false
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class AddBoardsCountToProject < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :projects, :boards_count, :integer, :default => false
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class AddNewsCountToProject < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :projects, :news_count, :integer, :default => false
|
||||
end
|
||||
end
|
Loading…
Reference in new issue