From: Andrea Zagli Date: Tue, 19 Jul 2016 07:56:35 +0000 (+0200) Subject: Emptied README. X-Git-Tag: v0.10.0^0 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=72b286b96a2fa85849ab1d1dacde3e221f5d2f3f;p=zakconfi%2Flibzakconfi Emptied README. --- diff --git a/README b/README index 91bbd34..8b13789 100644 --- 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