Added in the new serialized config table

This commit is contained in:
jengo
2000-12-12 22:39:50 +00:00
parent 8a084c4e4f
commit c92d4c5e11
7 changed files with 68 additions and 18 deletions

View File

@ -14,10 +14,9 @@
// NOTE: Please use spaces to seperate the field names. It makes copy and pasting easier.
$sql = "CREATE TABLE config (
config_name varchar(255) NOT NULL UNIQUE,
config_value varchar(100) NOT NULL
config_string text
)";
$db->query($sql);
$db->query($sql);
$sql = "create table applications (
app_name varchar(25) NOT NULL,