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