| 1234567891011121314151617181920 |
- namespace ShwasherSys.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class updateShortMessage中Level变更成MsgLevel : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.ShortMessage", "MsgLevel", c => c.Int(nullable: false));
- DropColumn("dbo.ShortMessage", "Level");
- }
-
- public override void Down()
- {
- AddColumn("dbo.ShortMessage", "Level", c => c.Int(nullable: false));
- DropColumn("dbo.ShortMessage", "MsgLevel");
- }
- }
- }
|