23 lines
579 B
C#
23 lines
579 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190731123237)]
|
|
public class KRETA2_592 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterAndCreateTables.sql", "CreateView.sql", "sp_Global_CreateSchemaViews.sql",
|
|
"4fnGetKapcsolodoOsztalycsoportok.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN("fnGetKapcsolodoOsztalycsoportok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|