Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. namespace Vidly.Migrations
  2. {
  3.     using System;
  4.     using System.Data.Entity.Migrations;
  5.    
  6.     public partial class ApplyAnnotationsToCustomerName : DbMigration
  7.     {
  8.         public override void Up()
  9.         {
  10.             AlterColumn("dbo.Customers", "Name", c => c.String(nullable: false, maxLength: 255));
  11.         }
  12.        
  13.         public override void Down()
  14.         {
  15.             AlterColumn("dbo.Customers", "Name", c => c.String());
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement