create videos table

git-svn-id: http://yolanda.mister-muffin.de/svn@22 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
josch 2007-10-11 11:02:09 +00:00
parent 51f2d96a27
commit ffdea24ee5

View file

@ -8,4 +8,6 @@ fill with some data:
eg.: insert into tagcloud values ('web tv', 68);
create table users (id int auto_increment not null, username varchar(255) not null, password char(41) not null, primary key (id));
insert into users (username, password) values ('user', password('pass'));
create table videos (id int auto_increment not null, title varchar(255) not null, userid varchar(255) not null, hash char(64) not null, status int not null, primary key (id));