| 123456789101112131415161718 |
- namespace WePlatform.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Update200802001 : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.WeLib_EmergencyPlanContents", "KeyWord", c => c.String(maxLength: 500));
- }
-
- public override void Down()
- {
- DropColumn("dbo.WeLib_EmergencyPlanContents", "KeyWord");
- }
- }
- }
|