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