mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-18 03:25:31 -05:00
13 lines
368 B
Ruby
13 lines
368 B
Ruby
|
class AddQuoteCountToPosts < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :posts, :quote_count, :integer, default: 0, null: false
|
||
|
execute "UPDATE posts SET quote_count = 1 WHERE quoteless = 'f'"
|
||
|
remove_column :posts, :quoteless
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :posts, :quote_count
|
||
|
add_column :posts, :quoteless, :boolean, default: false
|
||
|
end
|
||
|
end
|