19 lines
385 B
C#
19 lines
385 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190617160241)]
|
|
public class DB_784 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_FollowUpTantargy.sql");
|
|
CreateSchemaSPFN("sp_FollowUpTantargy");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|