19 lines
480 B
C#
19 lines
480 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180529183714)]
|
|
public class OM_938 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_CreateDictionaryItems.sql", "sp_Global_CreateSchemaViews.sql");
|
|
ExecuteScripts("createTables.sql", "createSchema.sql", "dictionaryitems_frissites.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|