Exemple #1
0
 //here is a sample of how to alter a table
 public string AlterSampleTable()
 {
     return(Seed.AddColumns("SampleTable", new dynamic[]
     {
         new { AnotherColumn = "bigint" },
         new { YetAnotherColumn = "nvarchar(max)" }
     }));
 }