CREATE TABLE issue_comments (
id integer NOT NULL,
- issue_id integer,
- commenter_user_id integer,
- body text,
- reassign boolean,
+ issue_id integer NOT NULL,
+ commenter_user_id integer NOT NULL,
+ body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
updated_by integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
- report_count integer DEFAULT 0
+ reports_count integer DEFAULT 0
);