19 lines
477 B
C#
19 lines
477 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200225161955)]
|
|
public class DB_2082 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspCreateSchemaViews.sql", "sp_ElozoTanevesViewokTorlese.sql", "uspGenerateTanevAdatok.sql", "DB_2082.sql");
|
|
CreateSchemaSPFN("sp_ElozoTanevesViewokTorlese");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|