rDrama/migrations/20230816-add-file-orgies.sql

8 lines
213 B
MySQL
Raw Normal View History

2023-08-16 20:13:24 +00:00
drop table public.orgies;
CREATE TABLE public.orgies (
type character varying(8) primary key,
data character varying(200) NOT NULL,
title character varying(1000) NOT NULL,
created_utc int not null
);