19 lines
395 B
C#
19 lines
395 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170516124338)]
|
|
public class DropDBVERSION : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DropDBVERSION.sql",
|
|
"sp_Global_CreateSchemaViews.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|