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