Add migration to drop `smiles` table
This commit is contained in:
parent
1ec99dd767
commit
ee7ef9ceca
|
@ -0,0 +1,11 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class DropSmilesTable < ActiveRecord::Migration[6.1]
|
||||||
|
def up
|
||||||
|
drop_table :smiles
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
raise ActiveRecord::IrreversibleMigration
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue