a099d68915
Initial Release; Includes Database and MVC refactoring
22 lines
501 B
C#
22 lines
501 B
C#
namespace Disco.Data.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity;
|
|
using System.Data.Entity.Migrations;
|
|
using System.Linq;
|
|
using Disco.Data.Repository;
|
|
|
|
internal sealed class Configuration : DbMigrationsConfiguration<DiscoDataContext>
|
|
{
|
|
public Configuration()
|
|
{
|
|
AutomaticMigrationsEnabled = false;
|
|
}
|
|
|
|
protected override void Seed(DiscoDataContext Database)
|
|
{
|
|
Database.SeedDatabase();
|
|
}
|
|
}
|
|
}
|