[go: up one dir, main page]

Menu

[r18]: / tags / 0.1 / install.sql  Maximize  Restore  History

Download this file

12 lines (9 with data), 367 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
-- Corre este script en la base de datos donde se instala el programa
-- por default es la base llamada ratchat
Create Table msg (
msgid int primary key auto_increment,
userid varchar(32) not null default '[nobody]',
time timestamp not null default current_timestamp,
chanid varchar(32) not null default '0',
msg varchar(256) not null default ''
);