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

11 lines
423 B
SQL

CREATE TABLE IF NOT EXISTS `{{prefix}}_console_snippets` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR(190) NOT NULL,
`code` MEDIUMTEXT NOT NULL,
`author_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,
`created_at` INT(10) UNSIGNED NOT NULL DEFAULT 0,
`updated_at` INT(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_updated` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;