Changed the charge_to date to allow NULL, since not all charges cover a time period (security deposits, some late charges, POS, etc)

git-svn-id: file:///svn-source/pmgr/branches/initial_20090526@61 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-06-01 07:26:00 +00:00
parent ef180e7dda
commit f42ce65768

View File

@@ -778,7 +778,7 @@ CREATE TABLE `pmgr_charges` (
`charge_type_id` INT(10) UNSIGNED NOT NULL,
`lease_id` INT(10) UNSIGNED NOT NULL,
`charge_date` DATE NOT NULL,
`charge_to_date` DATE NOT NULL,
`charge_to_date` DATE DEFAULT NULL,
`due_date` DATE DEFAULT NULL,
`amount` FLOAT(12,2) NOT NULL,
`tax` FLOAT(12,2) NOT NULL,