Failing test case.

This commit is contained in:
Daniel Nichter
2012-10-31 13:16:25 -06:00
parent 9b6f10480c
commit 0453d7dd82
4 changed files with 49 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
drop database if exists test;
create database test;
use test;
CREATE TABLE t (
`SOrNum` mediumint(9) unsigned NOT NULL auto_increment,
`SPNum` mediumint(9) unsigned NOT NULL,
`DateCreated` timestamp NOT NULL default CURRENT_TIMESTAMP,
`DateRelease` timestamp NOT NULL default '0000-00-00 00:00:00',
`ActualReleasedDate` timestamp NULL default NULL,
`PckPrice` decimal(10,2) NOT NULL default '0.00',
`Status` varchar(20) NOT NULL,
`PaymentStat` varchar(20) NOT NULL default 'Unpaid',
`CusCode` int(9) unsigned NOT NULL,
`SANumber` mediumint(9) unsigned NOT NULL default '0',
`SpecialInstruction` varchar(500) default NULL,
PRIMARY KEY (`SOrNum`)
) ENGINE=InnoDB;

View File

@@ -0,0 +1 @@
--