console/content/table/code_notebook_state.sql

SELECT 'breadcrumb' AS component;
    SELECT 'Home' as title, '/' as link;
    SELECT 'Console' as title, '/console/index.sql' as link;
    SELECT 'Content' as title;
    SELECT 'code_notebook_state table' as title;

    SELECT 'title' AS component, 'Code Notebook State' as contents;
    SELECT 'table' AS component, 1 AS search, 1 AS sort;
    SELECT code_notebook_state_id AS "ID",
           from_state AS "From State",
           to_state AS "To State",
           transition_reason AS "Reason",
           transitioned_at AS "Transitioned At"
      FROM code_notebook_state
     ORDER BY transitioned_at DESC;