Sha256: 1ff55a4dcbe25b7c637aa4a80ca1b7f54966e02a018a6d84aedb87c98f1cfef9
Contents?: true
Size: 585 Bytes
Versions: 16
Compression:
Stored size: 585 Bytes
Contents
class ActsAsFollowerMigration < ActiveRecord::Migration def self.up create_table :follows, :force => true do |t| t.references :followable, :polymorphic => true, :null => false t.references :follower, :polymorphic => true, :null => false t.boolean :blocked, :default => false, :null => false t.timestamps null: true end add_index :follows, ["follower_id", "follower_type"], :name => "fk_follows" add_index :follows, ["followable_id", "followable_type"], :name => "fk_followables" end def self.down drop_table :follows end end
Version data entries
16 entries across 16 versions & 1 rubygems