mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
13 lines
219 B
Plaintext
13 lines
219 B
Plaintext
using System.Data;
|
|
|
|
namespace Migrator.Framework.SchemaBuilder
|
|
{
|
|
public interface IColumnOptions
|
|
{
|
|
SchemaBuilder OfType(DbType dbType);
|
|
|
|
SchemaBuilder WithSize(int size);
|
|
|
|
IForeignKeyOptions AsForeignKey();
|
|
}
|
|
} |