feat(weeks2-3): data ingestion, geospatial launcher, intelligence endpoints
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { pool } from './db';
|
||||
import { pool } from '../db';
|
||||
|
||||
/**
|
||||
* Migration System for God Mode
|
||||
@@ -90,7 +90,7 @@ export async function getMigrationStatus(): Promise<{
|
||||
`);
|
||||
|
||||
return {
|
||||
tables: result.rows.map(r => r.table_name)
|
||||
tables: result.rows.map((r: { table_name: string }) => r.table_name)
|
||||
};
|
||||
} catch (error) {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user