mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-11 13:32:42 +01:00
13 lines
219 B
C#
13 lines
219 B
C#
using System.Data;
|
|
|
|
namespace Migrator.Framework.SchemaBuilder
|
|
{
|
|
public interface IColumnOptions
|
|
{
|
|
SchemaBuilder OfType(DbType dbType);
|
|
|
|
SchemaBuilder WithSize(int size);
|
|
|
|
IForeignKeyOptions AsForeignKey();
|
|
}
|
|
} |