mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 07:12:40 +00:00
Maintain PrimaryKey and AutoIncrement on some schemas
This commit is contained in:
parent
150d7b046a
commit
f106c01d43
1 changed files with 1 additions and 0 deletions
|
@ -33,6 +33,7 @@ public void should_parse_table_language_flavors(string sql, string tableName, st
|
|||
result.Name.Should().Be(tableName);
|
||||
result.Columns.Count.Should().Be(1);
|
||||
result.Columns.First().Name.Should().Be(columnName);
|
||||
result.Columns.First().IsIdentity.Should().BeTrue();
|
||||
}
|
||||
|
||||
[TestCase(@"CREATE INDEX TestIndex ON TestTable (MyId)", "TestIndex", "TestTable", "MyId")]
|
||||
|
|
Loading…
Reference in a new issue