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