Fix #6494 - translations code for reports
[Pman.Core] / sql / core_template_element.sql
diff --git a/sql/core_template_element.sql b/sql/core_template_element.sql
new file mode 100644 (file)
index 0000000..e10b61a
--- /dev/null
@@ -0,0 +1,10 @@
+
+
+-- templat eelement {element[xxxx].*}
+CREATE TABLE  core_template_element (
+  id int(11)  NOT NULL AUTO_INCREMENT,
+  name varchar(254)  NOT NULL,
+  PRIMARY KEY (id)
+);
+ALTER TABLE core_template_element ADD COLUMN template_id INT(11) NOT NULL DEFAULT 0;