9 lines
250 B
Ruby
9 lines
250 B
Ruby
|
class RemoveColumnToProjects < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :projects, :commits_count, :issues_count, :attachments_count, :boards_count, :news_count, :acts_count, :journals_count, :boards_reply_count
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|