| 123456789101112131415161718 |
- namespace ShwasherSys.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class 修改orderItems增加CustomerRowNo : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.OrderItems", "CustomerRowNo", c => c.String());
- }
-
- public override void Down()
- {
- DropColumn("dbo.OrderItems", "CustomerRowNo");
- }
- }
- }
|