tei.su/drizzle/0000_legal_gamma_corps.sql

9 lines
227 B
MySQL
Raw Normal View History

2024-08-03 06:30:05 +03:00
CREATE TABLE `shouts` (
`id` text PRIMARY KEY NOT NULL,
`serial` integer DEFAULT 0 NOT NULL,
`from_ip` text,
`pending` integer DEFAULT true NOT NULL,
`text` text,
`created_at` text DEFAULT (CURRENT_TIMESTAMP) NOT NULL
);