Chatwoot/db/migrate/20191020085608_rename_old_tables.rb
Sojan Jose 2099dc01a6
Routine weeding of the codebase (#163)
* Routine weeding of the codebase
* fix the spec
2019-10-20 16:19:12 +05:30

7 lines
215 B
Ruby

class RenameOldTables < ActiveRecord::Migration[6.1]
def change
drop_table :channels
rename_table :facebook_pages, :channel_facebook_pages
rename_table :channel_widgets, :channel_web_widgets
end
end