22 lines
453 B
C#
22 lines
453 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190520124147)]
|
|
public class OM_2688 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterTables.sql",
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"dictionaryitems_frissites.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|