init push
This commit is contained in:
8
backend/store/pg/migration/000013_create_license.up.sql
Normal file
8
backend/store/pg/migration/000013_create_license.up.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- create table licenses
|
||||
CREATE TABLE IF NOT EXISTS licenses (
|
||||
id SERIAL PRIMARY KEY,
|
||||
"type" text,
|
||||
code text,
|
||||
data bytea,
|
||||
created_at timestamptz NOT NULL DEFAULT NOW()
|
||||
);
|
||||
Reference in New Issue
Block a user