sql script zur erstellung der datenbank
This commit is contained in:
parent
66b9dfe218
commit
46640f21f9
1 changed files with 10 additions and 0 deletions
10
ctdo.sql
Normal file
10
ctdo.sql
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
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)
|
||||||
|
);
|
Loading…
Reference in a new issue