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