Chatwoot/db/migrate/20211122112607_remove_invalid_migration.rb
Tejaswini Chile 9103fbbdde
chore: Update schema files (#3438)
- removes the unintended table from schema files
2021-11-23 16:04:01 +05:30

13 lines
358 B
Ruby

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