Lootaherra
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
drop table loota_admin;
|
||||
drop table loota_customer;
|
||||
drop table loota_order;
|
||||
drop table loota_box;
|
||||
@@ -1,4 +1,11 @@
|
||||
-- Lootakalenteri migration tables
|
||||
create table loota_admin
|
||||
(
|
||||
id uuid primary key not null default gen_random_uuid(),
|
||||
identifier varchar not null,
|
||||
created_time timestamp with time zone not null default now()
|
||||
);
|
||||
|
||||
create table loota_customer
|
||||
(
|
||||
id uuid primary key not null default gen_random_uuid(),
|
||||
|
||||
Reference in New Issue
Block a user