summaryrefslogtreecommitdiff
path: root/sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql
blob: 57b24f1f35df649e874814b693810032f1727cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--
alter table chart add column gifi_accno text;
--
create table gifi (accno text, description text);
create unique index gifi_accno_key on gifi (accno);
--
create table mtemp (parts_id int, name text);
insert into mtemp select parts_id, name from makemodel;
drop table makemodel;
alter table mtemp rename to makemodel;
--
alter table defaults add column closedto date;
alter table defaults add column revtrans bool;
--
alter table ap add column notes text;
--
alter table customer add column businessnumber text;
alter table vendor add column businessnumber text;
--
update defaults set version = '1.8.4', revtrans = 'f';
--