Class: ActsAsFollowerMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



14
15
16
# File 'lib/generators/templates/migration.rb', line 14

def self.down
  drop_table :follows
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/generators/templates/migration.rb', line 2

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
  end

  add_index :follows, ["follower_id", "follower_type"],     :name => "fk_follows"
  add_index :follows, ["followable_id", "followable_type"], :name => "fk_followables"
end