Class: CreateUsers

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/teststuff/db/migrate/20130606172155_create_users.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/teststuff/db/migrate/20130606172155_create_users.rb', line 2

def change
  create_table :users do |t|
    t.string :name
    t.string :email

    t.timestamps
  end
end