From 08ed0b65e05ecb44c90c7bd8e2949102cbd1b024 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 11 Oct 2017 20:21:53 +1100 Subject: [PATCH] Make the slug and kind columns on Entries into varchars since they shouldn't ever get very long --- config/models | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/models b/config/models index d91155a..d7c3541 100644 --- a/config/models +++ b/config/models @@ -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