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