KBin/migrations/0001_init.sql

6 lines
111 B
MySQL
Raw Normal View History

2024-07-03 02:57:48 +00:00
create table if not exists pastes (
id serial primary key,
title text NOT NULL,
content text NOT NULL
);