class CreateAccount < ActiveRecord::Migration def self.up create_table :accounts do |t| t.integer :user_id t.string :role t.timestamps end end def self.down drop_table :accounts end end