19 lines
472 B
C#
19 lines
472 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190319103238)]
|
|
public class OM_2394 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspInsertEgyediNap.sql", "uspInsertEgyediNapOsztalycsoport.sql");
|
|
CreateSchemaStoredProcedures("uspInsertEgyediNap", "uspInsertEgyediNapOsztalycsoport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|