summaryrefslogtreecommitdiff
path: root/db/migrate/20140304014747_create_users.rb
blob: 3723908028ee7d8371a30c750b6021b00553b288 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.text :name
      t.varchar :pw_hash
      t.int :groups

      t.timestamps
    end
  end
end