Files
ave-cms/adminx/modules/Templates/migrations/001_create_templates_tables.sql
T
2026-07-27 12:58:44 +03:00

11 lines
471 B
SQL

CREATE TABLE IF NOT EXISTS `{{prefix}}_templates` (
`Id` SMALLINT(3) UNSIGNED NOT NULL AUTO_INCREMENT,
`template_title` VARCHAR(255) NOT NULL DEFAULT '',
`template_text` LONGTEXT NOT NULL,
`template_author_id` INT(10) UNSIGNED NOT NULL DEFAULT 1,
`template_created` INT(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`Id`),
KEY `idx_template_title` (`template_title`),
KEY `idx_template_author` (`template_author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;