All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m57s
5 lines
214 B
SQL
5 lines
214 B
SQL
CREATE TABLE "printer_log" (
|
|
"id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "printer_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
|
|
"name" text NOT NULL
|
|
);
|