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

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



Revision: 109
          http://svn.sourceforge.net/ledger-smb/?rev=109&view=rev
Author:   einhverfr
Date:     2006-09-17 21:44:02 -0700 (Sun, 17 Sep 2006)

Log Message:
-----------
Updating for testing.  Dataset creation and backup are currently known to be 
broken.

Modified Paths:
--------------
    trunk/Changelog
    trunk/LedgerSMB/Form.pm
    trunk/sql/Pg-tables.sql

Modified: trunk/Changelog
===================================================================
--- trunk/Changelog	2006-09-18 03:41:28 UTC (rev 108)
+++ trunk/Changelog	2006-09-18 04:44:02 UTC (rev 109)
@@ -1,6 +1,8 @@
 Changelog for LedgerSMB 1.1.0
 
 Database
+* Added add_custom_field and drop_custom_field functions.
+	-- will be more integrated into API next version
 * Added utility to partially recover from SQL-Ledger data corruption issues.
 * Primary Key added to acc_trans table
 * DB Updates now use one transaction per update file.

Modified: trunk/LedgerSMB/Form.pm
===================================================================
--- trunk/LedgerSMB/Form.pm	2006-09-18 03:41:28 UTC (rev 108)
+++ trunk/LedgerSMB/Form.pm	2006-09-18 04:44:02 UTC (rev 109)
@@ -63,7 +63,7 @@
 	$self->{menubar} = 1 if $self->{path} =~ /lynx/i;
 
 	$self->{version} = "1.0.0";
-	$self->{dbversion} = "2.6.17";
+	$self->{dbversion} = "2.6.18";
 
 	bless $self, $type;
 

Modified: trunk/sql/Pg-tables.sql
===================================================================
--- trunk/sql/Pg-tables.sql	2006-09-18 03:41:28 UTC (rev 108)
+++ trunk/sql/Pg-tables.sql	2006-09-18 04:44:02 UTC (rev 109)
@@ -35,7 +35,8 @@
   category char(1),
   link text,
   gifi_accno text,
-  contra bool DEFAULT 'f'
+  contra bool DEFAULT 'f',
+  PRIMARY KEY (id)
 );
 --
 CREATE TABLE gifi (


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