From 2502c56617641015719878906907e91354aa3fd7 Mon Sep 17 00:00:00 2001 From: paulr Date: Mon, 18 Apr 2011 03:16:59 +1000 Subject: [PATCH] some simple outline stuff atm --- lib/config.php | 21 +++++++++++++++++---- lib/plugins/db.php | 2 ++ var/sqlite3.sql | 2 ++ 3 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 lib/plugins/db.php diff --git a/lib/config.php b/lib/config.php index 62a4502..8a98632 100644 --- a/lib/config.php +++ b/lib/config.php @@ -1,7 +1,20 @@ \ No newline at end of file diff --git a/lib/plugins/db.php b/lib/plugins/db.php new file mode 100644 index 0000000..67c94a5 --- /dev/null +++ b/lib/plugins/db.php @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/var/sqlite3.sql b/var/sqlite3.sql index e69de29..c4b7b9f 100644 --- a/var/sqlite3.sql +++ b/var/sqlite3.sql @@ -0,0 +1,2 @@ +create table data_components ( component_id INTEGER PRIMARY KEY AUTOINCREMENT, component_name text, component_version text); +create table config_data (config_id INTEGER PRIMARY KEY AUTOINCREMENT, config_name text, config_data text); -- 1.7.0.4