Class: CreateRolesMigration

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

Class Method Summary collapse

Class Method Details

.downObject



15
16
17
18
# File 'lib/generators/avo/templates/create_roles_migration.rb', line 15

def self.down
drop_table :roles_users
drop_table :roles
end

.upObject



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

def self.up
create_table :roles, :force => true do |t|
  t.string :title
  t.timestamps
end
create_table :roles_users, :force => true do |t|
  t.integer :user_id
  t.integer :role_id
  t.timestamps
end

end