From f7c5171a837c0baeb16f43dfe05beac9c6f6b78a Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 19 Apr 2019 00:25:52 -0500 Subject: DB: Replace `NULL` boolean values with `FALSE` in Monsterpit feature columns; add `vars` column for persistent bangtag variable storage. --- app/models/status.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/models/status.rb') diff --git a/app/models/status.rb b/app/models/status.rb index 022296145..76923ab21 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -25,9 +25,9 @@ # poll_id :bigint(8) # content_type :string # tsv :tsvector -# curated :boolean +# curated :boolean default(FALSE), not null # sharekey :string -# network :boolean +# network :boolean default(FALSE), not null # class Status < ApplicationRecord -- cgit