19 lines
411 B
C#
19 lines
411 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190117173859)]
|
|
public class Hittan_sp_rename : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspSaveOrUpdateHittan.sql");
|
|
CreateSchemaStoredProcedures("uspSaveOrUpdateHittan");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|