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