Class: RolesUsers

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

Class Method Summary collapse

Class Method Details

.downObject



10
11
12
# File 'lib/generators/merrycms/templates/roles_users_migration.rb', line 10

def self.down
  drop_table :roles_users
end

.upObject



2
3
4
5
6
7
8
# File 'lib/generators/merrycms/templates/roles_users_migration.rb', line 2

def self.up
  create_table :roles_users, :id => false, :force => true do |t|
    t.references  :user
    t.references  :role
    t.timestamps
  end
end