phpBMS

Changeset 771

Show
Ignore:
Timestamp:
01/27/10 10:18:24 (6 months ago)
Author:
brieb
Message:
  • fixed installtion issue with creating table with field type text and default value
  • changed paymentmethods type to varchar instead of enum
Location:
trunk/phpbms
Files:
1 added
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/phpbms/install/createtables.sql

    r693 r771  
    128128  `reportuuid` varchar(64) NOT NULL, 
    129129  `name` varchar(64) NOT NULL default '', 
    130   `value` text default '', 
     130  `value` text, 
    131131  `type` varchar(32) NOT NULL default 'string', 
    132132  `required` tinyint(4) NOT NULL default '0', 
  • trunk/phpbms/install/update-nextver.sql

    r349 r771  
    1 UPDATE settings SET `name` = 'currency_sym' WHERE `name` = 'currency_symbol'; 
     1 
  • trunk/phpbms/modules/bms/install/createtables.sql

    r718 r771  
    325325  `uuid` varchar(64) NOT NULL, 
    326326  `name` varchar(128) NOT NULL default '', 
    327   `type` enum('draft','charge','receivable') default NULL, 
     327  `type` varchar(32) default NULL, 
    328328  `priority` int(8) NOT NULL default '0', 
    329329  `inactive` tinyint(1) NOT NULL default '0', 
  • trunk/phpbms/modules/recurringinvoices/scheduler_recurr.php

    r727 r771  
    405405                        $headers = "From: ".$to; 
    406406 
    407                         @ mail ($to,$subject,$message,$headers); 
     407                        @ mail($to,$subject,$message,$headers); 
    408408                }// endwhile 
    409409 
Copyright © 2010 Kreotek, LLC. All Rights reserved.