KBin/migrations/0001_init.sql
2024-07-02 22:57:48 -04:00

6 lines
111 B
SQL

create table if not exists pastes (
id serial primary key,
title text NOT NULL,
content text NOT NULL
);