| 1234567891011121314151617181920 |
- namespace ShwasherSys.Migrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class updateStandardAddModel : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.StandardDetail", "Model", c => c.String());
- //AddColumn("dbo.N_ViewOrderItems", "CustomerRowNo", c => c.String());
- }
-
- public override void Down()
- {
- //DropColumn("dbo.N_ViewOrderItems", "CustomerRowNo");
- DropColumn("dbo.StandardDetail", "Model");
- }
- }
- }
|