Class: CreateCircleTables

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

Class Method Summary collapse

Class Method Details

.downObject



31
32
33
34
35
# File 'lib/generators/circle/templates/migration.rb', line 31

def self.down
  remove_column :users, :friends_count
  drop_table :friendships
  drop_table :blocked_users
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/generators/circle/templates/migration.rb', line 2

def self.up
  create_table :friendships, :force => true do |t|
    t.references :user, :friend
    t.datetime :requested_at, :accepted_at, :denied_at, :blocked_at
    t.string :status
    t.timestamps
  end

  create_table :blocked_users, :force => true do |t|
    t.references :user, :blocked_user
    t.timestamps
  end

  change_table :friendships do |t|
    t.index :user_id
    t.index :friend_id
    t.index :status
  end

  change_table :blocked_users do |t|
    t.index :user_id
    t.index :blocked_user_id
  end

  change_table :users do |t|
    t.integer :friends_cout, :default => 0, :null => false
  end
end