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