diff -r 000000000000 -r 6371497b4e53 taula-mysql.sql --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/taula-mysql.sql Thu May 18 22:59:47 2006 +0200 @@ -0,0 +1,27 @@ +drop table if exists vortoj_ru_ca; + +create table vortoj_ru_ca ( + id int not null auto_increment, + vorto tinytext not null, + tipo tinytext not null, + traduko tinytext default NULL, + param1 tinytext default NULL, + param2 tinytext default NULL, + primary key (id) +) TYPE=MyISAM; + +drop table if exists frazoj_ru_ca; + +create table frazoj_ru_ca ( + id int not null auto_increment, + vorto tinytext not null, + frazo tinytext not null, + korekta integer not null default 0, + klarigo tinytext default null, + korektisto tinytext default null, + -- 0 = nekorektita + -- 1 = gxusta + -- 2 = malgxusta + -- 3 = nekutima + primary key (id) +) TYPE=MyISAM;