summaryrefslogtreecommitdiff
path: root/sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql
diff options
context:
space:
mode:
authorivan <ivan>2003-07-15 11:45:14 +0000
committerivan <ivan>2003-07-15 11:45:14 +0000
commitc0567c688084e89fcd11bf82348b6c418f1254ac (patch)
treeb9d0a6b33e4cc75915721124a7f4a80089183c9a /sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql
parenta2ef3ae885f2bccc0828836678c7e5901241d88d (diff)
parentf6c9088e16c4c083174dd1130ae58d213923cdef (diff)
This commit was generated by cvs2svn to compensate for changes in r2523,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql')
-rw-r--r--sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql21
1 files changed, 21 insertions, 0 deletions
diff --git a/sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql b/sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql
new file mode 100644
index 000000000..57b24f1f3
--- /dev/null
+++ b/sql-ledger/sql/Pg-upgrade-1.8.0-1.8.4.sql
@@ -0,0 +1,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';
+--