ccd3c6ab07
git-svn-id: http://yolanda.mister-muffin.de/svn@20 7eef14d0-6ed0-489d-bf55-20463b2d70db
11 lines
446 B
Text
11 lines
446 B
Text
to get a database execute the following mysql statements:
|
|
|
|
create database gnutube;
|
|
use gnutube;
|
|
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));
|
|
insert into users (username, password) values ('user', password('pass'));
|