Menu

[r784]: / ch.sahits.codegen.test / fragments / mysql_junit_table.sql  Maximize  Restore  History

Download this file

25 lines (20 with data), 582 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `__MYSQLCONNECTION_DB`
--
-- --------------------------------------------------------
--
-- Table structure for table `USER`
--
DROP TABLE IF EXISTS `USER`;
CREATE TABLE IF NOT EXISTS `USER` (
`ID` bigint(20) NOT NULL auto_increment,
`NAME` varchar(30) NOT NULL,
`SURNAME` varchar(30) NOT NULL,
`EMAIL` varchar(30) NOT NULL,
`BIRTH_DATE` date NOT NULL,
`IMAGE` blob NOT NULL,
`AGE` smallint(6) NOT NULL,
PRIMARY KEY (`ID`),
KEY `FK_NAME` (`NAME`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.