19 lines
444 B
C#
19 lines
444 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190917165751)]
|
|
public class DB_1275 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspDeleteViewsAll.sql", "sp_ElozoTanevesViewokTorlese.sql", "DB_1275.sql");
|
|
CreateSchemaSPFN("sp_ElozoTanevesViewokTorlese");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|