19 lines
456 B
C#
19 lines
456 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190103100351)]
|
|
public class DB_234 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DB_234.sql", "uspGetHelyettesitesekListaja.sql", "uspCreateSchemaSPFN.sql");
|
|
CreateSchemaStoredProcedures("uspGetHelyettesitesekListaja");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|