panel/migrations.moon

17 lines
324 B
Plaintext

import add_column, create_table, types from require "lapis.db.schema"
{
[1]: =>
create_table "users", {
{ "id", types.serial }
{ "email", types.text }
{ "name", types.text }
{ "password", types.text }
"PRIMARY KEY (id)"
}
[2]: =>
add_column "users", "admin", types.boolean
}