24 lines
555 B
C#
24 lines
555 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181029085507)]
|
|
public class KRETA_7390 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"createTables.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"dictionaryitems_frissites.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|