mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 23:47:13 +00:00
8 lines
178 B
SQL
8 lines
178 B
SQL
-- CreateTable
|
|
CREATE TABLE "test_notification" (
|
|
"id" SERIAL NOT NULL,
|
|
"notificationId" INTEGER NOT NULL,
|
|
|
|
CONSTRAINT "test_notification_pkey" PRIMARY KEY ("id")
|
|
);
|