mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
12 lines
234 B
MySQL
12 lines
234 B
MySQL
|
begin;
|
||
|
|
||
|
create table if not exists "pastes" (
|
||
|
"id" text not null,
|
||
|
"content" text not null,
|
||
|
"deletionToken" text not null,
|
||
|
"created" bigint not null,
|
||
|
"autoDelete" boolean not null,
|
||
|
primary key ("id")
|
||
|
);
|
||
|
|
||
|
commit;
|