ctdo.de/ctdo.sql

13 lines
302 B
MySQL
Raw Normal View History

create database ctdo;
use ctdo;
create table events (
id int not null auto_increment,
title varchar(80) not null,
description varchar(500) not null,
media varchar(10000),
date varchar(10) not null,
primary key(id)
2023-01-28 18:52:41 +00:00
);
create table adminKeys (
adminKey varchar(16) not null
);