18 lines
430 B
C#
18 lines
430 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180828120325)]
|
|
public class KRETA_6486 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("alterAndCreateTable.sql", "createSchema.sql", "sp_Global_CreateSchemaViews.sql", "sp_Global_CreateDictionaryItems.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|