Class: CreateAssignments
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAssignments
- Defined in:
- lib/double_auth_engine/generators/double_auth_engine/templates/assignment_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
10 11 12 |
# File 'lib/double_auth_engine/generators/double_auth_engine/templates/assignment_migration.rb', line 10 def self.down drop_table :assignments end |
.up ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/double_auth_engine/generators/double_auth_engine/templates/assignment_migration.rb', line 2 def self.up create_table :assignments do |t| t.belongs_to :user t.belongs_to :role t. end end |