20 lines
453 B
C#
20 lines
453 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170425121516)]
|
|
public class KRETA_927 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarend.sql", "sp_GetOrarendTanoranKivuli.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetOrarend", "sp_GetOrarendTanoranKivuli");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|