fix #8131 - chinese translations
[Pman.Core] / sql / core_template_element.sql
1
2
3 -- templat eelement {element[xxxx].*}
4 CREATE TABLE  core_template_element (
5   id int(11)  NOT NULL AUTO_INCREMENT,
6   name varchar(254)  NOT NULL,
7   PRIMARY KEY (id)
8 );
9  
10 ALTER TABLE core_template_element ADD COLUMN template_id INT(11) NOT NULL DEFAULT 0;