[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[5501] trunk



Revision: 5501
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5501&view=rev
Author:   einhverfr
Date:     2013-01-06 07:27:50 +0000 (Sun, 06 Jan 2013)
Log Message:
-----------
Updating John Locke's status in CONTRIBORS.
Also adding his fix to tax_extended to Fixes.sql so that on update everyone else will get the right fkey relationship

Modified Paths:
--------------
    trunk/CONTRIBUTORS
    trunk/sql/modules/Fixes.sql

Modified: trunk/CONTRIBUTORS
===================================================================
--- trunk/CONTRIBUTORS	2013-01-06 07:23:40 UTC (rev 5500)
+++ trunk/CONTRIBUTORS	2013-01-06 07:27:50 UTC (rev 5501)
@@ -21,6 +21,10 @@
 Herman Vierendeels <herman.vierendeels @ gmail.com> Contributed a number of 
 bugfixes.
 
+John Locke (Freelock Consulting) <john @ freelock.com> Contributed a number of 
+bug fixes and provided extensive feedback and assistance during the development
+cycles of 1.3 and 1.4.
+
 Christopher Murtagh <christopher.murtagh @ gmail.com>
 Wrote the session handling fix, has begun reformatting the files to fit the
 current coding standards, and other contributions.
@@ -73,9 +77,6 @@
 Alexey Klyukin (Command Prompt) has contributed code particularly to end of 
 year routines, and helped address scalability issues.
 
-John Locke (Freelock Consulting) <john @ freelock.com> Contributed a number of 
-bug fixes and provided extensive feedback and assistance.
-
 Louis B. Moore <lbmlist @ hethcote.com> has provided the documentation on the 
 command-line API and helped with upgrade scripts, both for 1.2 and 1.3.
 

Modified: trunk/sql/modules/Fixes.sql
===================================================================
--- trunk/sql/modules/Fixes.sql	2013-01-06 07:23:40 UTC (rev 5500)
+++ trunk/sql/modules/Fixes.sql	2013-01-06 07:27:50 UTC (rev 5501)
@@ -135,3 +135,13 @@
 VALUES (3, 'overhead', 'Time/Overhead for payroll, manufacturing, etc', false, true);
 
 COMMIT;
+
+-- BETA 2
+BEGIN;
+
+ALTER TABLE tax_extended DROP CONSTRAINT "tax_extended_entry_id_fkey";
+
+ALTER TABLE tax_extended ADD FOREIGN KEY (entry_id) 
+REFERENCES acc_trans(entry_id);
+
+COMMIT;

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.