class CreateCustomers < ActiveRecord::Migration def change create_table :customers do |t| t.string :name t.integer :role t.timestamps null: false end end end