Sha256: 11bb9d3a508008a4d9affc7989ec328feaaf5376e88f739f6b67e8cafe04bafe
Contents?: true
Size: 445 Bytes
Versions: 3
Compression:
Stored size: 445 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string "email_address" t.string "encrypted_password" t.integer "sign_in_count" t.datetime "created_at" t.datetime "updated_at" t.string "first_name" t.string "last_name" t.string "middle_name" t.date "birth_date" t.boolean "registered" t.boolean "admin" end end end
Version data entries
3 entries across 3 versions & 1 rubygems