Eliminate three-state boolean

This commit is contained in:
Artur Beljajev 2018-08-24 13:33:39 +03:00
parent 7ccd662d60
commit cc0a6c229f
2 changed files with 8 additions and 1 deletions

View file

@ -2002,7 +2002,7 @@ CREATE TABLE public.notifications (
text character varying NOT NULL,
attached_obj_type character varying,
attached_obj_id integer,
read boolean,
read boolean NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
creator_str character varying,
@ -4767,3 +4767,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180823174331');
INSERT INTO schema_migrations (version) VALUES ('20180823212823');
INSERT INTO schema_migrations (version) VALUES ('20180824102834');