Skip to content

Commit

Permalink
Merge pull request #1112 from joseph-greer/IndexedAttribute_AllowMult…
Browse files Browse the repository at this point in the history
…iple

Update IndexedAttribute to allow multiple indexes on a column
  • Loading branch information
praeclarum authored Mar 27, 2024
2 parents 3a941c7 + e4aaf49 commit df96ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ public class AutoIncrementAttribute : Attribute
{
}

[AttributeUsage (AttributeTargets.Property)]
[AttributeUsage (AttributeTargets.Property, AllowMultiple = true)]
public class IndexedAttribute : Attribute
{
public string Name { get; set; }
Expand Down

0 comments on commit df96ed1

Please sign in to comment.