25 lines
572 B
C#
25 lines
572 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190116145748)]
|
|
public class OM_2010 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetTanarFoglalkozasai.sql",
|
|
"uspGetTanarTanitottTanuloi.sql"
|
|
);
|
|
CreateSchemaStoredProcedures(
|
|
"uspGetTanarFoglalkozasai",
|
|
"uspGetTanarTanitottTanuloi"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|