Sha256: 2b4cd16de8738cd7d0cddc219c6106d1461d787b29784cfae7a6c02870f5cf81
Contents?: true
Size: 629 Bytes
Versions: 25
Compression:
Stored size: 629 Bytes
Contents
class CreateSocialAccounts < ActiveRecord::Migration[5.1] def change create_table :social_accounts do |t| t.string :facebook t.string :twitter t.string :instagram t.string :google_plus t.string :tripadvisor t.string :pinterest t.string :flickr t.string :behance t.string :dribbble t.string :tumblr t.string :github t.string :linkedin t.string :soundcloud t.string :youtube t.string :skype t.string :vimeo t.integer :setting_id t.timestamps null: false end add_index :social_accounts, :setting_id end end
Version data entries
25 entries across 24 versions & 1 rubygems