DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
11 lines
280 B
Ruby
11 lines
280 B
Ruby
class RemoveTolk < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_index :tolk_translations, column: [:phrase_id, :locale_id]
|
|
remove_index :tolk_locales, column: :name
|
|
|
|
drop_table :tolk_translations
|
|
drop_table :tolk_phrases
|
|
drop_table :tolk_locales
|
|
end
|
|
end
|