20120710210018_create_users.rb 217 B

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