Class: RolesUsers
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- RolesUsers
- Defined in:
- lib/generators/merrycms/templates/roles_users_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
10 11 12 |
# File 'lib/generators/merrycms/templates/roles_users_migration.rb', line 10 def self.down drop_table :roles_users end |
.up ⇒ Object
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. end end |