20 lines
502 B
C#
20 lines
502 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180117131948)]
|
|
public class KRETA_4481_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOsztalyNaplo.sql", "sp_GetTanulokTantargyMulasztasokReszletezese.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo", "sp_GetTanulokTantargyMulasztasokReszletezese");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|