Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeFadeToGrey
titleassessment_profile
linenumberstrue
CREATE TABLE assessment_profile (
    batch_id text,
    user_id text,
    course_id text,
    worksheet_id text,
    worksheet_name text,
    attempt_id text,
    updated_on timestamp,
    created_on timestamp,
    recent_ets long,
    question list<frozen<question>>,
    PRIMARY KEY (worksheet_id, attempt_id, user_id, course_id, batch_id )
)


CREATE TYPE question(
    id text,
    max_score int,
    score int,
    type text,
    title text,
    pass text,
    description text,
    duration:text
);


...