summaryrefslogtreecommitdiff
path: root/db/migrate/20140304015021_create_users.rb
blob: 6a500e50fe934367bfe5770564c4b7a1cae8a2a2 (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.text :pw_hash
      t.integer :groups

      t.timestamps
    end
  end
end