25 lines
600 B
C#
25 lines
600 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200327134223)]
|
|
public class DB_920 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_AktivTanevValtasa.sql",
|
|
"uspGenerateTanevAdatokFromExistingTanev.sql",
|
|
"uspCloneTanulo.sql",
|
|
"uspCreateSchemaViews.sql");
|
|
CreateSchemaSPFN(
|
|
"sp_AktivTanevValtasa",
|
|
"uspCloneTanulo");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|