Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 16th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Database Class Missing for MigratorDotNet
  2. using System;
  3. using System.Linq;
  4. using System.Web;
  5. using Migrator.Framework;
  6. using System.Data;
  7.  
  8. namespace Migrations
  9. {
  10.     [Migration(1)]
  11.     public class CreateModelTables_001
  12.     {
  13.         public void Up() {
  14.             Database.ExecuteNonQuery("");
  15.         }
  16.     }
  17. }
  18.        
  19. public class CreateModelTables_001 : Migration