Create 1740403001_create_ufutx_s2_shop_sub_category.up.sql

This commit is contained in:
tian 2025-02-24 21:17:02 +08:00
parent 6adeead1be
commit 96c92b7a60

View File

@ -0,0 +1,8 @@
CREATE TABLE `health`.`ufutx_s2_shop_sub_category` (
`id` INT NOT NULL AUTO_INCREMENT ,
`name` VARCHAR(256) NOT NULL ,
`icon` VARCHAR(512) NULL DEFAULT NULL ,
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '商城次级分类,属于sku';