19 lines
451 B
C#
19 lines
451 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181122163542)]
|
|
public class DB_7_01 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("alter.tables.advanced.sql", "uspTanuloMulasztasParhuzamosOra.sql");
|
|
CreateSchemaStoredProcedures("uspTanuloMulasztasParhuzamosOra");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|