-- IMPORT SQL TO DATABASE TO INSTALL -- USE COLLATION utf8_general_ci -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `name` varchar(20) NOT NULL, `password` varchar(64) NOT NULL, `real_name` varchar(64) NOT NULL, `last_login` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `users` -- INSERT INTO `users` VALUES (1, 'Pádraic', '5534a08ecbd8fabf7f123e62b34ea58a34e0b968084faccbfc58664c92f7156b', 'Pádraic Brady', '0000-00-00 00:00:00');