Make the slug and kind columns on Entries into varchars since they shouldn't ever get very long
This commit is contained in:
parent
ddf9b2fada
commit
08ed0b65e0
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ Profile
|
|||
displayName Text Maybe sqltype=varchar(255)
|
||||
|
||||
Entry
|
||||
slug Slug Maybe
|
||||
kind EntryKind
|
||||
slug Slug Maybe maxlen=255
|
||||
kind EntryKind maxlen=255
|
||||
name Text maxlen=255
|
||||
content Text sqltype=longtext
|
||||
published UTCTime
|
||||
|
|
Loading…
Reference in a new issue