[go: up one dir, main page]

Menu

[r18]: / trunk / install.sql  Maximize  Restore  History

Download this file

32 lines (25 with data), 755 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
25
26
27
28
29
-- Corre este script en la base de datos donde se instala el programa
-- por default es la base llamada ratchat
/*!40101 SET NAMES utf8 */;
Create Table msg (
msgid int primary key auto_increment,
userid varchar(32) not null default '[nobody]',
time int not null default 0,
chanid varchar(32) not null default '0',
msg varchar(256) not null default ''
) DEFAULT CHARSET=utf8;
Create Table user (
userid varchar(32),
passwd varchar(32),
email varchar(128)
) DEFAULT CHARSET=utf8;
Create Table channel (
chanid varchar(32),
topic varchar(256) not null default '',
mode varchar(16)
) DEFAULT CHARSET=utf8;
Create Table mode (
chanid varchar(32),
userid varchar(32),
mode varchar(16)
) DEFAULT CHARSET=utf8;