6 lines
111 B
SQL
6 lines
111 B
SQL
create table if not exists pastes (
|
|
id serial primary key,
|
|
title text NOT NULL,
|
|
content text NOT NULL
|
|
);
|