Skip to content

Instantly share code, notes, and snippets.

View mgirard772's full-sized avatar

Matthew Girard mgirard772

  • Tufts University
  • Malden
View GitHub Profile
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,