diff --git a/trunk/README_DATABASE b/trunk/README_DATABASE index 9a4de54..073a9e1 100644 --- a/trunk/README_DATABASE +++ b/trunk/README_DATABASE @@ -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)); +