mirror of https://github.com/certd/certd
chore:
parent
a847e66c4f
commit
327a919958
|
@ -0,0 +1,13 @@
|
||||||
|
CREATE TABLE "pi_pipeline_group"
|
||||||
|
(
|
||||||
|
"id" integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||||
|
"user_id" integer NOT NULL,
|
||||||
|
"name" varchar(100) NOT NULL,
|
||||||
|
"icon" varchar(100),
|
||||||
|
"favorite" boolean NOT NULL DEFAULT (false),
|
||||||
|
"create_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP),
|
||||||
|
"update_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP)
|
||||||
|
);
|
||||||
|
|
||||||
|
ALTER TABLE pi_pipeline
|
||||||
|
ADD COLUMN group_id integer;
|
Loading…
Reference in New Issue