20 lines
438 B
C#
20 lines
438 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171022183820)]
|
|
public class KRETA_3776_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOsztalyNaplo.sql", "sp_ImportASC.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo", "sp_ImportASC");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|