19 lines
451 B
C#
19 lines
451 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190724151229)]
|
|
public class DB_854 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("AddIndex.sql", "sp_GetTanulokTantargyMulasztasokReszletezese.sql");
|
|
CreateSchemaSPFN("sp_GetTanulokTantargyMulasztasokReszletezese");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|