Lines Matching defs:thread_comment
49 CREATE TABLE thread_comment (
68 SELECT thread_comment.*,
70 FROM thread_comment
71 JOIN thread ON thread_comment.thread_id = thread.id;
74 ON thread_comment (thread_id);
164 thread_comment_id INTEGER REFERENCES thread_comment (id), --may be null
259 -- thread_comment triggers
265 UPDATE thread_comment
274 UPDATE thread_comment
278 UPDATE thread_comment
283 -- end of thread_comment triggers