20 lines
427 B
C#
20 lines
427 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190314152133)]
|
|
public class KRETA_7609_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetHianyzokEsJelenlevokSzama.sql");
|
|
CreateSchemaStoredProcedures("uspGetHianyzokEsJelenlevokSzama");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|