mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-05 23:12:22 +00: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();
|
||
|
}
|
||
|
}
|