t.string :issue_type
t.datetime :resolved_at
t.integer :resolved_by
- t.datetime :created_at
- t.datetime :updated_at
t.integer :updated_by
-
t.timestamps :null => false
end
t.integer :issue_id
t.integer :reporter_user_id
t.text :details, :null => false
- t.datetime :created_at
- t.datetime :updated_at
-
t.timestamps :null => false
end
issue_id integer,
commenter_user_id integer,
body text,
- created_at timestamp without time zone NOT NULL,
reassign boolean,
+ created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
issue_type character varying,
resolved_at timestamp without time zone,
resolved_by integer,
+ updated_by integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
- updated_by integer,
report_count integer DEFAULT 0
);