console/content/view/code_notebook_sql_cell_migratable_version.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_sql_cell_migratable_version view' as title;

    SELECT 'title' AS component, 'Migratable SQL Cell Versions' as contents;
    SELECT 'table' AS component, 1 AS search, 1 AS sort;
    SELECT notebook_name AS "Notebook",
           cell_name AS "Cell Name",
           interpretable_code_hash AS "Code Hash",
           is_idempotent AS "Idempotent",
           version_timestamp AS "Version"
      FROM code_notebook_sql_cell_migratable_version
     ORDER BY version_timestamp DESC;