Routine weeding of the codebase (#163)

* Routine weeding of the codebase
* fix the spec
This commit is contained in:
Sojan Jose
2019-10-20 16:19:12 +05:30
committed by GitHub
parent 94c6d6db6f
commit 2099dc01a6
16 changed files with 228 additions and 244 deletions

View File

@@ -0,0 +1,7 @@
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