22 lines
447 B
C#
22 lines
447 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181122154006)]
|
|
public class OM_1877 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"createTable.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|