@@ -1613,6 +1613,29 @@ struct TCatalog {
16131613 })
16141614 {
16151615 if ( GetEnv (" YDB_EXPERIMENTAL_PG" ) == " 1" ){
1616+ // grafana migration_log
1617+ AllStaticTables.push_back (
1618+ {{" public" , " migration_log" }, ERelKind::Relation, 100001 }
1619+ );
1620+ AllStaticColumns.push_back (
1621+ {" public" , " migration_log" , " id" , " int" }
1622+ );
1623+ AllStaticColumns.push_back (
1624+ {" public" , " migration_log" , " migration_id" , " character varying(255)" }
1625+ );
1626+ AllStaticColumns.push_back (
1627+ {" public" , " migration_log" , " sql" , " text" }
1628+ );
1629+ AllStaticColumns.push_back (
1630+ {" public" , " migration_log" , " success" , " boolean" }
1631+ );
1632+ AllStaticColumns.push_back (
1633+ {" public" , " migration_log" , " error" , " text" }
1634+ );
1635+ AllStaticColumns.push_back (
1636+ {" public" , " migration_log" , " timestamp" , " timestamp without time zone" }
1637+ );
1638+
16161639 // zabbix config
16171640 AllStaticTables.push_back (
16181641 {{" public" , " config" }, ERelKind::Relation, 100001 }
0 commit comments