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