using System; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; namespace Yi.Framework.Model.Migrations { public partial class ec3 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "brand_category"); migrationBuilder.AlterColumn( name: "stock_count", table: "stock", type: "int", nullable: false, comment: "库存数量", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "seckill_total", table: "stock", type: "int", nullable: false, comment: "秒杀总数量", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "seckill_stock", table: "stock", type: "int", nullable: false, comment: "可秒杀库存", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "special_spec", table: "spu_detail", type: "longtext", nullable: true, comment: "特有规格参数及可选值信息,json格式", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "packing_list", table: "spu_detail", type: "longtext", nullable: true, comment: "包装清单", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "generic_spec", table: "spu_detail", type: "longtext", nullable: true, comment: "通用规格参数数据", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "description", table: "spu_detail", type: "longtext", nullable: true, comment: "描述", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "after_service", table: "spu_detail", type: "longtext", nullable: true, comment: "售后服务", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "valid", table: "spu", type: "int", nullable: false, comment: "是否有效", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "title", table: "spu", type: "longtext", nullable: true, comment: "标题", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "sub_title", table: "spu", type: "longtext", nullable: true, comment: "子标题", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "saleable", table: "spu", type: "int", nullable: false, comment: "是否上架", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "last_update_time", table: "spu", type: "datetime(6)", nullable: false, comment: "最后更新时间", oldClrType: typeof(DateTime), oldType: "datetime(6)"); migrationBuilder.AlterColumn( name: "crate_time", table: "spu", type: "datetime(6)", nullable: false, comment: "创建时间", oldClrType: typeof(DateTime), oldType: "datetime(6)"); migrationBuilder.AlterColumn( name: "unit", table: "spec_param", type: "longtext", nullable: true, comment: "数字类型参数的单位,非数字类型可以为空", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "segments", table: "spec_param", type: "longtext", nullable: true, comment: "数值类型参数,如果需要搜索,则添加分段间隔值,如CPU频率间隔:0.5-1.0", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "searching", table: "spec_param", type: "int", nullable: false, comment: "是否用于搜索过滤,true或false", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "numeric", table: "spec_param", type: "int", nullable: false, comment: "是否是数字类型参数,true或false", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "name", table: "spec_param", type: "longtext", nullable: true, comment: "参数名", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "generic", table: "spec_param", type: "int", nullable: false, comment: "是否是sku通用属性,true或false", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "name", table: "spec_group", type: "longtext", nullable: true, comment: "规格组名称", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "title", table: "sku", type: "longtext", nullable: true, comment: "商品标题", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "price", table: "sku", type: "int", nullable: false, comment: "销售价格,单位为分", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "own_spec", table: "sku", type: "longtext", nullable: true, comment: "sku的特有规格参数键值对,json格式,反序列化时请使用linkedHashMap,保证有序", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "last_update_time", table: "sku", type: "datetime(6)", nullable: false, comment: "最后更新时间", oldClrType: typeof(DateTime), oldType: "datetime(6)"); migrationBuilder.AlterColumn( name: "indexes", table: "sku", type: "longtext", nullable: true, comment: "特有规格属性在spu属性模板中的对应下标组合", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "images", table: "sku", type: "longtext", nullable: true, comment: "商品的图片,多个图片以‘,’分割", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "enable", table: "sku", type: "int", nullable: false, comment: "是否有效,0无效,1有效", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "crate_time", table: "sku", type: "datetime(6)", nullable: false, comment: "创建时间", oldClrType: typeof(DateTime), oldType: "datetime(6)"); migrationBuilder.AlterColumn( name: "total_pay", table: "order", type: "int", nullable: false, comment: "总金额,单位为分", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "source_type", table: "order", type: "int", nullable: false, comment: "订单来源:1:app端,2:pc端,3:M端,4:微信端,5:手机qq端", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "shipping_name", table: "order", type: "longtext", nullable: true, comment: "物流名称", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "shipping_code", table: "order", type: "longtext", nullable: true, comment: "物流单号", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_zip", table: "order", type: "longtext", nullable: true, comment: "收货人邮编", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_state", table: "order", type: "longtext", nullable: true, comment: "收获地址(省)", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_mobile", table: "order", type: "longtext", nullable: true, comment: "收货人手机", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_district", table: "order", type: "longtext", nullable: true, comment: "收获地址(区/县)", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_city", table: "order", type: "longtext", nullable: true, comment: "收获地址(市)", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_address", table: "order", type: "longtext", nullable: true, comment: "收获地址(街道、住址等详细地址)", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver", table: "order", type: "longtext", nullable: true, comment: "收货人", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "promotion_ids", table: "order", type: "longtext", nullable: true, comment: "promotion_ids", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "post_fee", table: "order", type: "int", nullable: false, comment: "邮费。单位:分。如:20007,表示:200元7分", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "payment_type", table: "order", type: "int", nullable: false, comment: "支付类型,1、在线支付,2、货到付款", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "invoice_type", table: "order", type: "int", nullable: false, comment: "发票类型:0无发票1普通发票,2电子发票,3增值税发票", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "creat_time", table: "order", type: "datetime(6)", nullable: false, comment: "订单创建时间", oldClrType: typeof(DateTime), oldType: "datetime(6)"); migrationBuilder.AlterColumn( name: "buyer_rate", table: "order", type: "int", nullable: false, comment: "买家是否已经评价,0未评价,1已评价", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "buyer_nick", table: "order", type: "longtext", nullable: true, comment: "买家昵称", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "buyer_message", table: "order", type: "longtext", nullable: true, comment: "买家留言", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "actual_pay", table: "order", type: "int", nullable: false, comment: "实付金额。单位:分。如:20007,表示:200元7分", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "sort", table: "category", type: "int", nullable: false, comment: "排序", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "name", table: "category", type: "longtext", nullable: true, comment: "类别名称", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "is_parent", table: "category", type: "int", nullable: false, comment: "是否父类别", oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "name", table: "brand", type: "longtext", nullable: true, comment: "品牌名称", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "letter", table: "brand", type: "longtext", nullable: true, comment: "品牌首字母", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "image", table: "brand", type: "longtext", nullable: true, comment: "品牌图片", oldClrType: typeof(string), oldType: "longtext", oldNullable: true) .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateTable( name: "brandcategory", columns: table => new { brandsid = table.Column(type: "int", nullable: false), categoriesid = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_brandcategory", x => new { x.brandsid, x.categoriesid }); table.ForeignKey( name: "FK_brandcategory_brand_brandsid", column: x => x.brandsid, principalTable: "brand", principalColumn: "id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_brandcategory_category_categoriesid", column: x => x.categoriesid, principalTable: "category", principalColumn: "id", onDelete: ReferentialAction.Cascade); }) .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateIndex( name: "IX_brandcategory_categoriesid", table: "brandcategory", column: "categoriesid"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "brandcategory"); migrationBuilder.AlterColumn( name: "stock_count", table: "stock", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "库存数量"); migrationBuilder.AlterColumn( name: "seckill_total", table: "stock", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "秒杀总数量"); migrationBuilder.AlterColumn( name: "seckill_stock", table: "stock", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "可秒杀库存"); migrationBuilder.AlterColumn( name: "special_spec", table: "spu_detail", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "特有规格参数及可选值信息,json格式") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "packing_list", table: "spu_detail", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "包装清单") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "generic_spec", table: "spu_detail", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "通用规格参数数据") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "description", table: "spu_detail", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "描述") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "after_service", table: "spu_detail", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "售后服务") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "valid", table: "spu", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否有效"); migrationBuilder.AlterColumn( name: "title", table: "spu", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "标题") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "sub_title", table: "spu", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "子标题") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "saleable", table: "spu", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否上架"); migrationBuilder.AlterColumn( name: "last_update_time", table: "spu", type: "datetime(6)", nullable: false, oldClrType: typeof(DateTime), oldType: "datetime(6)", oldComment: "最后更新时间"); migrationBuilder.AlterColumn( name: "crate_time", table: "spu", type: "datetime(6)", nullable: false, oldClrType: typeof(DateTime), oldType: "datetime(6)", oldComment: "创建时间"); migrationBuilder.AlterColumn( name: "unit", table: "spec_param", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "数字类型参数的单位,非数字类型可以为空") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "segments", table: "spec_param", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "数值类型参数,如果需要搜索,则添加分段间隔值,如CPU频率间隔:0.5-1.0") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "searching", table: "spec_param", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否用于搜索过滤,true或false"); migrationBuilder.AlterColumn( name: "numeric", table: "spec_param", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否是数字类型参数,true或false"); migrationBuilder.AlterColumn( name: "name", table: "spec_param", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "参数名") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "generic", table: "spec_param", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否是sku通用属性,true或false"); migrationBuilder.AlterColumn( name: "name", table: "spec_group", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "规格组名称") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "title", table: "sku", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "商品标题") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "price", table: "sku", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "销售价格,单位为分"); migrationBuilder.AlterColumn( name: "own_spec", table: "sku", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "sku的特有规格参数键值对,json格式,反序列化时请使用linkedHashMap,保证有序") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "last_update_time", table: "sku", type: "datetime(6)", nullable: false, oldClrType: typeof(DateTime), oldType: "datetime(6)", oldComment: "最后更新时间"); migrationBuilder.AlterColumn( name: "indexes", table: "sku", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "特有规格属性在spu属性模板中的对应下标组合") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "images", table: "sku", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "商品的图片,多个图片以‘,’分割") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "enable", table: "sku", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否有效,0无效,1有效"); migrationBuilder.AlterColumn( name: "crate_time", table: "sku", type: "datetime(6)", nullable: false, oldClrType: typeof(DateTime), oldType: "datetime(6)", oldComment: "创建时间"); migrationBuilder.AlterColumn( name: "total_pay", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "总金额,单位为分"); migrationBuilder.AlterColumn( name: "source_type", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "订单来源:1:app端,2:pc端,3:M端,4:微信端,5:手机qq端"); migrationBuilder.AlterColumn( name: "shipping_name", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "物流名称") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "shipping_code", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "物流单号") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_zip", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收货人邮编") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_state", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收获地址(省)") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_mobile", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收货人手机") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_district", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收获地址(区/县)") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_city", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收获地址(市)") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver_address", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收获地址(街道、住址等详细地址)") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "receiver", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "收货人") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "promotion_ids", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "promotion_ids") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "post_fee", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "邮费。单位:分。如:20007,表示:200元7分"); migrationBuilder.AlterColumn( name: "payment_type", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "支付类型,1、在线支付,2、货到付款"); migrationBuilder.AlterColumn( name: "invoice_type", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "发票类型:0无发票1普通发票,2电子发票,3增值税发票"); migrationBuilder.AlterColumn( name: "creat_time", table: "order", type: "datetime(6)", nullable: false, oldClrType: typeof(DateTime), oldType: "datetime(6)", oldComment: "订单创建时间"); migrationBuilder.AlterColumn( name: "buyer_rate", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "买家是否已经评价,0未评价,1已评价"); migrationBuilder.AlterColumn( name: "buyer_nick", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "买家昵称") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "buyer_message", table: "order", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "买家留言") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "actual_pay", table: "order", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "实付金额。单位:分。如:20007,表示:200元7分"); migrationBuilder.AlterColumn( name: "sort", table: "category", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "排序"); migrationBuilder.AlterColumn( name: "name", table: "category", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "类别名称") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "is_parent", table: "category", type: "int", nullable: false, oldClrType: typeof(int), oldType: "int", oldComment: "是否父类别"); migrationBuilder.AlterColumn( name: "name", table: "brand", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "品牌名称") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "letter", table: "brand", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "品牌首字母") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AlterColumn( name: "image", table: "brand", type: "longtext", nullable: true, oldClrType: typeof(string), oldType: "longtext", oldNullable: true, oldComment: "品牌图片") .Annotation("MySql:CharSet", "utf8mb4") .OldAnnotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateTable( name: "brand_category", columns: table => new { id = table.Column(type: "int", nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), brandId = table.Column(type: "int", nullable: false), categoryId = table.Column(type: "int", nullable: false), is_delete = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_brand_category", x => x.id); table.ForeignKey( name: "FK_brand_category_brand_brandId", column: x => x.brandId, principalTable: "brand", principalColumn: "id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_brand_category_category_categoryId", column: x => x.categoryId, principalTable: "category", principalColumn: "id", onDelete: ReferentialAction.Cascade); }) .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateIndex( name: "IX_brand_category_brandId", table: "brand_category", column: "brandId"); migrationBuilder.CreateIndex( name: "IX_brand_category_categoryId", table: "brand_category", column: "categoryId"); } } }