All checks were successful
Automated Container Build / build-and-push (push) Successful in 54s
9 lines
266 B
SQL
9 lines
266 B
SQL
-- CreateTable
|
|
CREATE TABLE "StudyActivity" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"type" TEXT NOT NULL,
|
|
"occurredAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "StudyActivity_occurredAt_idx" ON "StudyActivity"("occurredAt");
|