udemy-go-web-1/migrations/20240706133130_create_user_table.up.fizz

9 lines
309 B
Plaintext
Raw Normal View History

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})
}