19 lines
438 B
C#
19 lines
438 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20201207115632)]
|
|
public class KRETA2_6860_3 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetHetNapja.sql",
|
|
"sp_Global_SetSystemSettingsDefaultData.sql",
|
|
"uspCreateTanevRendje.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|