9 lines
309 B
Plaintext
9 lines
309 B
Plaintext
create_table("users") {
|
|
t.Column("id", "integer", {primary: true})
|
|
t.Column("first_name", "string", {"default": ""})
|
|
t.Column("last_name", "string", {"default": ""})
|
|
t.Column("email", "string", {})
|
|
t.Column("password", "string", {"size": 60})
|
|
t.Column("access_level", "integer", {"default": 1})
|
|
}
|