19 lines
416 B
C#
19 lines
416 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190102154230)]
|
|
public class DB_57 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloiGondviseloAdatok.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTanuloiGondviseloAdatok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|