2969769002aeb5810cbf923db175bdd4ceab0330
[kivitendo-erp.git] / sql / Pg-upgrade / Pg-upgrade-2.2.0.15-2.2.0.16.sql
1 CREATE TABLE "adr" (
2         "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
3         "adr_description" text,
4         "adr_code" text NOT NULL
5 );
6
7 ALTER TABLE parts add column adr_id integer;
8
9 alter table shipto add column shipto_id integer;
10 alter table shipto alter column shipto_id set default nextval('id'::text);
11 update shipto set shipto_id=nextval('id'::text);
12
13 alter table oe add column shipto_id integer;
14 alter table ar add column shipto_id integer;