Advertisement
Eather

Untitled

Sep 25th, 2012
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.21 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `clientsshared` (
  2.   `id_client` int(11) NOT NULL AUTO_INCREMENT,
  3.   `login` char(20) NOT NULL,
  4.   `password` char(20) NOT NULL,
  5.   `type` int(11) NOT NULL DEFAULT '0',
  6.   `id_tariff` int(11) NOT NULL DEFAULT '0',
  7.   `account_state` decimal(12,4) NOT NULL DEFAULT '0.0000',
  8.   `tech_prefix` char(255) NOT NULL,
  9.   `id_reseller` int(11) NOT NULL DEFAULT '-1',
  10.   `type2` int(11) NOT NULL DEFAULT '0',
  11.   `type3` int(11) NOT NULL DEFAULT '0',
  12.   `id_intrastate_tariff` int(11) NOT NULL DEFAULT '-1',
  13.   `id_currency` int(11) NOT NULL DEFAULT '1',
  14.   `codecs` int(11) NOT NULL DEFAULT '0',
  15.   `primary_codec` int(11) NOT NULL DEFAULT '0',
  16.   `free_seconds` varchar(255) DEFAULT NULL,
  17.   `id_tariff_vod` int(11) NOT NULL DEFAULT '0',
  18.   `siokrhotjiiatr` varchar(20) DEFAULT NULL,
  19.   `msiozraonjit` varchar(20) DEFAULT NULL,
  20.   `web_password` varchar(40) DEFAULT NULL,
  21.   PRIMARY KEY (`id_client`),
  22.   UNIQUE KEY `IX_ClientsLoginsCS` (`login`),
  23.   KEY `IX_ClientsSharedReseller` (`id_reseller`),
  24.   KEY `IX_ClientsSharedTariffs` (`id_tariff`),
  25.   KEY `IX_ClientsSharedCurrency` (`id_currency`),
  26.   KEY `IX_ClientsSharedWebPassword` (`web_password`)
  27. ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=644 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement