]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Emptied README. master v0.10.0
authorAndrea Zagli <azagli@libero.it>
Tue, 19 Jul 2016 07:56:35 +0000 (09:56 +0200)
committerAndrea Zagli <azagli@libero.it>
Tue, 19 Jul 2016 07:57:43 +0000 (09:57 +0200)
README

diff --git a/README b/README
index 91bbd34ecf9305dca435a625f523f66f650e7614..8b137891791fe96927ad78e64b0aad7bded08bdc 100644 (file)
--- a/README
+++ b/README
@@ -1,22 +1 @@
-Configurations' database can be created with this sql commands
 
-CREATE TABLE configs (
-    id integer NOT NULL,
-    name varchar(100) DEFAULT '',
-    description varchar(255) DEFAULT '',
-    CONSTRAINT configs_pkey PRIMARY KEY (id),
-    CONSTRAINT name_unique UNIQUE (name)
-);
-
-CREATE TABLE "values" (
-    id_configs integer NOT NULL,
-    id integer NOT NULL,
-    id_parent integer,
-    "key" varchar(50) DEFAULT '',
-    value text DEFAULT '',
-    description varchar(255) DEFAULT '',
-    CONSTRAINT values_pkey PRIMARY KEY (id_configs, id),
-    CONSTRAINT values_name_unique UNIQUE (id_configs, id_parent, "key")
-);
-
-or from gConfi