19 lines
563 B
C#
19 lines
563 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170608125956)]
|
|
public class KRETA_1650 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_DeleteAllTTF.sql", "sp_ImportASC.sql", "sp_ImportTantargyFelosztas.sql", "sp_GetHianyzoDuplikaltTanarok.sql");
|
|
CreateSchemaStoredProcedures("sp_DeleteAllTTF", "sp_ImportASC", "sp_ImportTantargyFelosztas", "sp_GetHianyzoDuplikaltTanarok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|