Creating a new DefinitionFactory for refactoring the database definitions used by the syntax provider.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using Umbraco.Core.Persistence.Migrations.Model;
|
||||
|
||||
namespace Umbraco.Core.Persistence.DatabaseModelDefinitions
|
||||
{
|
||||
internal static class DefinitionFactory
|
||||
{
|
||||
public static TableDefinition GetTableDefinition(Type modelType)
|
||||
{
|
||||
var tableDefinition = new TableDefinition();
|
||||
return tableDefinition;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user