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