summaryrefslogtreecommitdiff
path: root/db/migrate/20140228164606_create_users.rb
blob: 1c37f38f18cf4bd487252b9efb38db57b3301dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name
      t.string :email
	  t.string :user_name

      t.timestamps
    end
  end
end