main
1class CreateUsers < ActiveRecord::Migration
2 def change
3 create_table :users do |t|
4 t.string :email
5 t.string :password_digest
6 t.timestamps
7 end
8 end
9end