blob: 7120e582a49a52284fae41c6a1350fd5bda00be8 (
plain) (
blame)
1
2
3
4
5
6
|
class AddMetadataToStatuses < ActiveRecord::Migration
def change
add_column :statuses, :in_reply_to_id, :integer, null: true
add_column :statuses, :reblog_of_id, :integer, null: true
end
end
|