Sha256: 3be45d4f561a8d582fb661a32899f93cfe639874a0b438158d964514b909f2f8
Contents?: true
Size: 287 Bytes
Versions: 2
Compression:
Stored size: 287 Bytes
Contents
class CreateEmployees < ActiveRecord::Migration def self.up create_table :employees do |t| t.string :first_name, :last_name, :email_address, :password t.integer :phone_extension t.timestamps end end def self.down drop_table :employees end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brisk-bills-0.8.2 | db/migrate/001_create_employees.rb |
brisk-bills-0.8.1 | db/migrate/001_create_employees.rb |