19 lines
424 B
C#
19 lines
424 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200120161941)]
|
|
public class DB_1903 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetDokumentumTantargyakErtekeleshez.sql");
|
|
CreateSchemaSPFN("uspGetDokumentumTantargyakErtekeleshez");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|