27 lines
1.1 KiB
SQL
27 lines
1.1 KiB
SQL
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
|
|
--
|
|
-- Structure de la table `accounts`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `accounts`;
|
|
CREATE TABLE IF NOT EXISTS `accounts` (
|
|
`id` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`login` varchar(16) NOT NULL DEFAULT '',
|
|
`password` varchar(64) NOT NULL DEFAULT '',
|
|
`current_email` varchar(64) NOT NULL DEFAULT '',
|
|
`registration_email` varchar(64) NOT NULL DEFAULT '',
|
|
`timecreate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`timelastmodify` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`content_ids` tinyint(2) unsigned NOT NULL DEFAULT '16',
|
|
`expansions` smallint(4) UNSIGNED NOT NULL DEFAULT '4094',
|
|
`features` tinyint(2) UNSIGNED NOT NULL DEFAULT '253',
|
|
`status` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|
`priv` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|