19 lines
431 B
C#
19 lines
431 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20201125153810)]
|
|
public class dictionary1453_6500_merge : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspCreateDictionaryItems.sql");
|
|
|
|
ExecuteScripts("dictionary1453_6500_merge_UpdateScripts.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|