Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit a5d101f

Browse files
author
Michael Grauer
committed
BUG: Refs #0298. Add batchmake module pgsql database.
1 parent 7f00811 commit a5d101f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CREATE TABLE batchmake_task (
2+
batchmake_task_id serial PRIMARY KEY,
3+
user_id bigint NOT NULL
4+
);
5+
6+
7+
CREATE TABLE batchmake_itemmetric (
8+
itemmetric_id serial PRIMARY KEY,
9+
metric_name character varying(64) NOT NULL,
10+
bms_name character varying(256) NOT NULL
11+
);

0 commit comments

Comments
 (0)