Switch DBType to use the fully-qualified type name rather than a simple name
This commit is contained in:
@ -15,6 +15,8 @@ namespace Oqtane.Interfaces
|
||||
|
||||
public string Provider { get; }
|
||||
|
||||
public string TypeName { get; }
|
||||
|
||||
public OperationBuilder<AddColumnOperation> AddAutoIncrementColumn(ColumnsBuilder table, string name);
|
||||
|
||||
public string ConcatenateSql(params string[] values);
|
||||
|
@ -6,6 +6,8 @@ namespace Oqtane.Models
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string Type { get; set; }
|
||||
public string ControlType { get; set; }
|
||||
|
||||
public string DBType { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -23,6 +23,8 @@ namespace Oqtane.Shared
|
||||
|
||||
public abstract string Provider { get; }
|
||||
|
||||
public abstract string TypeName { get; }
|
||||
|
||||
public abstract OperationBuilder<AddColumnOperation> AddAutoIncrementColumn(ColumnsBuilder table, string name);
|
||||
|
||||
public virtual string ConcatenateSql(params string[] values)
|
||||
|
Reference in New Issue
Block a user