1 # $Id: i18n.sql 6314 2008-01-02 21:33:51Z phpnut $
3 # Copyright 2005-2008, Cake Software Foundation, Inc.
4 # 1785 E. Sahara Avenue, Suite 490-204
5 # Las Vegas, Nevada 89104
7 # Licensed under The MIT License
8 # Redistributions of files must retain the above copyright notice.
9 # http://www.opensource.org/licenses/mit-license.php The MIT License
12 id int(10) NOT NULL auto_increment,
13 locale varchar(6) NOT NULL,
14 model varchar(255) NOT NULL,
15 foreign_key int(10) NOT NULL,
16 field varchar(255) NOT NULL,
19 # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field),
20 # INDEX I18N_LOCALE_ROW(locale, model, foreign_key),
21 # INDEX I18N_LOCALE_MODEL(locale, model),
22 # INDEX I18N_FIELD(model, foreign_key, field),
23 # INDEX I18N_ROW(model, foreign_key),
24 INDEX locale (locale),
26 INDEX row_id (foreign_key),