2         "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
 
   3         "adr_description" text,
 
   4         "adr_code" text NOT NULL
 
   7 ALTER TABLE parts add column adr_id integer;
 
   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);
 
  13 alter table oe add column shipto_id integer;
 
  14 alter table ar add column shipto_id integer;