forked from MarseyWorld/MarseyWorld
8 lines
251 B
MySQL
8 lines
251 B
MySQL
|
DROP TABLE orgies; --Don't worry: Orgies should only have between 0 and 1 rows...
|
||
|
CREATE TABLE public.orgies (
|
||
|
id integer NOT NULL,
|
||
|
type integer NOT NULL,
|
||
|
data character varying(200) NOT NULL,
|
||
|
title character varying(1000) NOT NULL
|
||
|
);
|