20111002172757_create_users.rb 169 B

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