This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE public.comments | |
( | |
id VARCHAR(36) primary key, | |
asset CHARACTER varying, | |
body CHARACTER varying, | |
commentable VARCHAR(36), | |
commentabletype CHARACTER varying, | |
companyid VARCHAR(36), | |
createdat timestamp WITHOUT time zone DEFAULT ('now'::text)::timestamp with time zone, | |
notifcationsenabled boolean DEFAULT FALSE, |