18 lines
482 B
C#
18 lines
482 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170607151233)]
|
|
public class KRETA_1627 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("CreateTable.sql", "CreateView.sql", "sp_Global_CreateSchemaViews.sql", "sp_Global_CreateDictionaryItems.sql", "RenameDictionaryItems.sql", "dictionaryitems_frissites.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|