Skip to content

Instantly share code, notes, and snippets.

@ManfredLange
Created November 10, 2020 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ManfredLange/0746322712398a93ceb0073aad7338f2 to your computer and use it in GitHub Desktop.
Save ManfredLange/0746322712398a93ceb0073aad7338f2 to your computer and use it in GitHub Desktop.
Updated class Program now calling Database.Migrations()
using System;
using CmdLine.DataAccess;
namespace CmdLine
{
class Program
{
static void Main(string[] args)
{
Database.RunMigrations();
Console.WriteLine("Hello World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment