You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psfpeqmhf/db/migrate/20190326095920_add_is_hidde...

7 lines
184 B

class AddIsHiddenToMessages < ActiveRecord::Migration[5.2]
def change
add_column :messages, :is_hidden, :boolean, :default => false
add_index :messages, :is_hidden
end
end