class CreateAssignments < ActiveRecord::Migration def self.up create_table :assignments do |t| t.belongs_to :user t.belongs_to :role t.timestamps end end def self.down drop_table :assignments end end