Ticket #6642: test_case.sql

File test_case.sql, 356 bytes (added by trbs, 16 years ago)
Line 
1
2CREATE TABLE 'TestCase' (
3 Date date NOT NULL default '0000-00-00',
4 Header varchar(150) NOT NULL default '',
5 ID bigint(20) NOT NULL
6);
7-- UNIQUE KEY 'ID' ('ID')
8
9INSERT INTO TestCase VALUES ('2008-02-01', 'test case 1', 1);
10INSERT INTO TestCase VALUES ('0000-00-00', 'test case 2', 2);
11INSERT INTO TestCase VALUES ('2008-02-02', 'test case 3', 3);
12
Back to Top