2023-01-28 17:32:48 +00:00
|
|
|
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
|
2023-01-28 17:32:48 +00:00
|
|
|
);
|