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

8 lines
203 B
MySQL
Raw Normal View History

2023-06-13 02:22:05 +03:00
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")
);