mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
added better db migration support than what Subsonic provides out of the box.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Data;
|
||||
|
||||
namespace Migrator.Framework.SchemaBuilder
|
||||
{
|
||||
public interface IColumnOptions
|
||||
{
|
||||
SchemaBuilder OfType(DbType dbType);
|
||||
|
||||
SchemaBuilder WithSize(int size);
|
||||
|
||||
IForeignKeyOptions AsForeignKey();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user