projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 2272-setup-user-in-workbench
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20130122020042_create_users.rb
1
class CreateUsers < ActiveRecord::Migration
2
def change
3
create_table :users do |t|
4
t.string :uuid
5
t.string :created_by_client
6
t.string :created_by_user
7
t.datetime :created_at
8
t.string :modified_by_client
9
t.string :modified_by_user
10
t.datetime :modified_at
11
t.string :email
12
t.string :first_name
13
t.string :last_name
14
t.string :identity_url
15
t.boolean :is_admin
16
t.text :prefs
17
18
t.timestamps
19
end
20
end
21
end