Menu

[r3154]: / trunk / ch.sahits.codegen.example / fragments / MySQLEclipseDatabase.sql  Maximize  Restore  History

Download this file

21 lines (16 with data), 460 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
--
-- Database: `eclipse`
--
-- --------------------------------------------------------
--
-- Table structure for table `USER`
--
CREATE TABLE IF NOT EXISTS `USER` (
`ID` int(11) NOT NULL auto_increment,
`username` varchar(30) NOT NULL,
`password` char(40) NOT NULL,
`email` varchar(50) NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`)
) 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.