mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Added CreateIndex to Migrator
This commit is contained in:
parent
a1653022ad
commit
76d029361b
3 changed files with 902 additions and 842 deletions
|
@ -1,3 +1,4 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
using ForeignKeyConstraint=Migrator.Framework.ForeignKeyConstraint;
|
||||
|
@ -53,7 +54,12 @@ namespace Migrator.Providers
|
|||
{
|
||||
// No Op
|
||||
}
|
||||
|
||||
|
||||
public void RemoveIndex(string table, string name)
|
||||
{
|
||||
// No Op
|
||||
}
|
||||
|
||||
public void AddTable(string name, params Column[] columns)
|
||||
{
|
||||
// No Op
|
||||
|
@ -129,6 +135,16 @@ namespace Migrator.Providers
|
|||
// No Op
|
||||
}
|
||||
|
||||
public void AddIndex(string name, string table, params string[] columns)
|
||||
{
|
||||
//No Op
|
||||
}
|
||||
|
||||
public void AddIndex(string name, string table, bool unique, params string[] columns)
|
||||
{
|
||||
//No Op
|
||||
}
|
||||
|
||||
public void AddPrimaryKey(string name, string table, params string[] columns)
|
||||
{
|
||||
// No Op
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue