2099dc01a6
* Routine weeding of the codebase * fix the spec
7 lines
215 B
Ruby
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
|