From 7574b2b151e9aa00fdc42d36bbfe5394a60aac57 Mon Sep 17 00:00:00 2001 From: josch Date: Thu, 11 Oct 2007 19:30:20 +0000 Subject: [PATCH] fixed users table git-svn-id: http://yolanda.mister-muffin.de/svn@35 7eef14d0-6ed0-489d-bf55-20463b2d70db --- trunk/README_DATABASE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/README_DATABASE b/trunk/README_DATABASE index ccbb364..121585e 100644 --- a/trunk/README_DATABASE +++ b/trunk/README_DATABASE @@ -7,7 +7,7 @@ create table tagcloud (text varchar(255) not null, count int not null); 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)); +create table users (id int auto_increment not null, username varchar(255) not null, password char(41) not null, sid char(32) not null, primary key (id)); create table videos (id int auto_increment not null, title varchar(255) not null, caption text, userid varchar(255) not null, hash char(64) not null, status int not null, primary key (id), fulltext (title, caption));