23 lines
434 B
C#
23 lines
434 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191002160017)]
|
|
public class KRETA_940_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetAtlag.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"uspGetAtlag"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|