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