bc54a281e6
• Added: - migration for adding has_quote to statuses
6 lines
129 B
Ruby
6 lines
129 B
Ruby
class AddHasQuoteToStatuses < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :statuses, :has_quote, :boolean
|
|
end
|
|
end
|