19 lines
435 B
C#
19 lines
435 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190206145244)]
|
|
public class AL_510 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("AL_510.sql", "uspTanuloMulasztasParhuzamosOra.sql");
|
|
CreateSchemaStoredProcedures("uspTanuloMulasztasParhuzamosOra");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|