chore: Update schema files (#3438)

- removes the unintended table from schema files
This commit is contained in:
Tejaswini Chile
2021-11-23 16:04:01 +05:30
committed by GitHub
parent e182b59002
commit 9103fbbdde
2 changed files with 14 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
class RemoveInvalidMigration < ActiveRecord::Migration[6.1]
def change
return unless ActiveRecord::Base.connection.table_exists? 'actions'
drop_table :actions do |t|
t.string :name
t.jsonb :execution_list
t.datetime :created_at
t.datetime :updated_at
t.index ['name'], name: 'index_actions_on_name'
end
end
end