X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=sql%2Flx-office.sql;h=e7206536f42cd659a7155cb5fe40aa67c83da963;hb=23ae25e9dcd34ba16d930f723b66fddac10f52fb;hp=439b119bb8f43d0d22757bdfdbe936234741d476;hpb=d4c280d5d8f3640b86a1ac4c8007ed809dd45d15;p=kivitendo-erp.git diff --git a/sql/lx-office.sql b/sql/lx-office.sql index 439b119bb..e7206536f 100644 --- a/sql/lx-office.sql +++ b/sql/lx-office.sql @@ -115,7 +115,7 @@ CREATE TABLE "defaults" ( "itime" timestamp DEFAULT now(), "mtime" timestamp ); -INSERT INTO defaults (version,audittrail) VALUES ('2.1.2', 't'); +INSERT INTO defaults (version,audittrail) VALUES ('2.2.0.1', 't'); CREATE TABLE audittrail ( "trans_id" int, @@ -197,6 +197,8 @@ CREATE TABLE "vendor" ( "bank_code" varchar(10), "bank" text, "language" varchar(5), + "language_id" integer, + "payment_id" integer, "datevexport" integer, "itime" timestamp DEFAULT now(), "mtime" timestamp, @@ -237,13 +239,15 @@ CREATE TABLE "customer" ( "bank_code" varchar(10), "bank" text, "language" varchar(5), + "language_id" integer, + "payment_id" integer, "datevexport" integer, "itime" timestamp DEFAULT now(), "mtime" timestamp, "obsolete" boolean DEFAULT 'f', "ustid" varchar(12), "username" varchar(50), - "user_password" varchar(12), + "user_password" text, "salesman_id" integer, "c_vendor_id" text, "klass" integer DEFAULT 0 @@ -285,6 +289,7 @@ CREATE TABLE "ar" ( "paid" numeric (15,5), "datepaid" date, "duedate" date, + "deliverydate" date, "invoice" boolean DEFAULT 'f', "shippingpoint" text, "terms" smallint DEFAULT 0, @@ -295,6 +300,10 @@ CREATE TABLE "ar" ( "quonumber" text, "cusordnumber" text, "intnotes" text, + "language_id" integer, + "payment_id" integer, + "delivery_customer_id" integer, + "delivery_vendor_id" integer, "department_id" integer DEFAULT 0, "shipvia" text, "itime" timestamp DEFAULT now(), @@ -321,6 +330,8 @@ CREATE TABLE "ap" ( "employee_id" integer, "quonumber" text, "intnotes" text, + "language_id" integer, + "payment_id" integer, "department_id" integer DEFAULT 0, "itime" timestamp DEFAULT now(), "mtime" timestamp, @@ -359,6 +370,14 @@ CREATE TABLE "vendortax" ( "mtime" timestamp ); +CREATE TABLE "translation" ( + "parts_id" integer, + "language_id" integer, + "translation" text, + "itime" timestamp DEFAULT now(), + "mtime" timestamp +); + CREATE TABLE "oe" ( "id" integer DEFAULT nextval('id'::text) PRIMARY KEY, "ordnumber" text NOT NULL, @@ -378,6 +397,10 @@ CREATE TABLE "oe" ( "quonumber" text, "cusordnumber" text, "intnotes" text, + "delivery_customer_id" integer, + "delivery_vendor_id" integer, + "language_id" integer, + "payment_id" integer, "department_id" integer DEFAULT 0, "itime" timestamp DEFAULT now(), "mtime" timestamp, @@ -453,7 +476,7 @@ CREATE TABLE "shipto" ( CREATE TABLE "project" ( "id" integer DEFAULT nextval('id'::text) PRIMARY KEY, - "projectnumber" text, + "projectnumber" text UNIQUE, "description" text, "itime" timestamp DEFAULT now(), "mtime" timestamp @@ -533,6 +556,27 @@ CREATE TABLE "business" ( "mtime" timestamp ); + +CREATE TABLE "language" ( + "id" integer DEFAULT nextval('id'::text) PRIMARY KEY, + "description" text, + "template_code" text, + "article_code" text, + "itime" timestamp DEFAULT now(), + "mtime" timestamp +); + +CREATE TABLE "payment_terms" ( + "id" integer DEFAULT nextval('id'::text) PRIMARY KEY, + "description" text, + "description_long" text, + "terms_netto" integer, + "terms_skonto" integer, + "percent_skonto" real, + "itime" timestamp DEFAULT now(), + "mtime" timestamp +); + CREATE TABLE "sic" ( "code" text, "sictype" character(1),