1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00
pasty/internal/storage/sqlite/migrations/000001_initialize_schema.up.sql
2023-06-13 01:22:05 +02:00

8 lines
203 B
SQL

CREATE TABLE "pastes" (
"id" TEXT NOT NULL,
"content" TEXT NOT NULL,
"modification_token" TEXT NOT NULL,
"created" BIGINT NOT NULL,
"metadata" TEXT NOT NULL,
PRIMARY KEY ("id")
);