23 lines
514 B
C#
23 lines
514 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190716115647)]
|
|
public class KRETA2_288_I : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterAndCreateTables.sql", "CreateView.sql", "sp_Global_CreateSchemaViews.sql",
|
|
"sp_FollowUpTerem.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN("sp_FollowUpTerem");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|