mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04: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();
|
|
}
|
|
} |