2021-04-15 22:30:37 +03:00
|
|
|
begin;
|
|
|
|
|
2023-06-13 02:22:05 +03:00
|
|
|
create table "pastes" (
|
2021-04-15 22:30:37 +03:00
|
|
|
"id" text not null,
|
|
|
|
"content" text not null,
|
|
|
|
"deletionToken" text not null,
|
|
|
|
"created" bigint not null,
|
|
|
|
"autoDelete" boolean not null,
|
|
|
|
primary key ("id")
|
|
|
|
);
|
|
|
|
|
|
|
|
commit;
|