howto create the databse

git-svn-id: http://yolanda.mister-muffin.de/svn@7 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
josch 2007-10-10 09:05:57 +00:00
parent 3cae15be76
commit c700555ef8

8
trunk/README_DATABASE Normal file
View file

@ -0,0 +1,8 @@
to get a database execute the following mysql statements:
create database gnutube;
use gnutube;
create table tagcloud (text char(255) not null, count int not null);
fill with some data:
eg.: insert into tagcloud values ('web tv', 68);