Skip to content

Commit e4aaf49

Browse files
author
Joe Greer
committed
Update IndexedAttribute to allow multiple indexes on a column (based off issue #122)
1 parent 0b23275 commit e4aaf49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLite.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ public class AutoIncrementAttribute : Attribute
23492349
{
23502350
}
23512351

2352-
[AttributeUsage (AttributeTargets.Property)]
2352+
[AttributeUsage (AttributeTargets.Property, AllowMultiple = true)]
23532353
public class IndexedAttribute : Attribute
23542354
{
23552355
public string Name { get; set; }

0 commit comments

Comments
 (0)