1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00

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();
}
}