1 # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
3 # Licensed under The MIT License
4 # For full copyright and license information, please see the LICENSE.txt
5 # Redistributions of files must retain the above copyright notice.
6 # MIT License (http://www.opensource.org/licenses/mit-license.php)
9 id int NOT NULL auto_increment,
10 locale varchar(6) NOT NULL,
11 model varchar(255) NOT NULL,
12 foreign_key int(10) NOT NULL,
13 field varchar(255) NOT NULL,
16 UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field),
17 INDEX I18N_FIELD(model, foreign_key, field)