feat: Add Instagram Channel (#2955)

This commit is contained in:
Tejaswini Chile
2021-10-05 14:35:32 +05:30
committed by GitHub
parent 30244f79a6
commit 40d0b2faf3
30 changed files with 825 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
class AddInstagramIdToFacebookPage < ActiveRecord::Migration[6.1]
def up
add_column :channel_facebook_pages, :instagram_id, :string
end
def down
remove_column :channel_facebook_pages, :instagram_id, :string
end
end