sql script zur erstellung der datenbank
This commit is contained in:
parent
189fc4c5f2
commit
6454f31b2b
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