7 lines
192 B
Ruby
7 lines
192 B
Ruby
class AddHiddenAtToPollTranslations < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :poll_translations, :hidden_at, :datetime
|
|
add_index :poll_translations, :hidden_at
|
|
end
|
|
end
|