MutationPointTbl

there shall never exist two mutations points for the same file+offset.

package
@TableName(mutationPointTable)
@TableConstraint("file_offset UNIQUE (file_id, offset_begin, offset_end)")
@TableForeignKey("file_id", KeyRef("files(id)"), KeyParam("ON DELETE CASCADE"))
struct MutationPointTbl {}

Members

Variables

column
uint column;
Undocumented in source.
column_end
uint column_end;
Undocumented in source.
file_id
long file_id;
Undocumented in source.
id
long id;
Undocumented in source.
line
uint line;

line start from zero

line_end
uint line_end;
Undocumented in source.
offset_begin
uint offset_begin;
Undocumented in source.
offset_end
uint offset_end;
Undocumented in source.

Meta