Skip to content

Commit

Permalink
Updated README to express the support of custom collate functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
msallin committed Dec 28, 2017
1 parent 72cc287 commit 4c5e31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The following features are supported:
- Auto increment (An int PrimaryKey will automatically be incremented and you can explicit set the "AUTOINCREMENT" constraint to a PrimaryKey using the Autoincrement-Attribute)
- Index (Decorate columns with the `Index` attribute. Indices are automatically created for foreign keys by default. To prevent this you can remove the convention `ForeignKeyIndexConvention`)
- Unique constraint (Decorate columns with the `UniqueAttribute`, which is part of this library)
- Collate constraint (Decorate columns with the `CollateAttribute`, which is part of this library)
- Collate constraint (Decorate columns with the `CollateAttribute`, which is part of this library. Use `CollationFunction.Custom` to specify a own collation function.)
- SQL default value (Decorate columns with the `SqlDefaultValueAttribute`, which is part of this library)

## Install
Expand Down

0 comments on commit 4c5e31d

Please sign in to comment.