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