@scotty_walker  
To insert an ObjectId into a PostgreSQL database, you can follow these steps:
- Connect to your PostgreSQL database using a client tool like pgAdmin or the psql command-line tool.
 - Create a table in your database that includes a column to store the ObjectId. For example:
 
1
2
3
4
  | 
CREATE TABLE your_table (
    id SERIAL PRIMARY KEY,
    object_id TEXT
);
 | 
 
- To insert an ObjectId into the table, you can use a SQL INSERT statement. Make sure to convert the ObjectId to a string before inserting it. For example:
 
1
  | 
INSERT INTO your_table (object_id) VALUES ('your_object_id_here');
 | 
 
- You can also insert an ObjectId using a programming language or framework, by connecting to the database and executing an INSERT statement with the ObjectId value.
 - Finally, don't forget to commit the transaction to save the changes in the database. If you are using a client tool, you may need to explicitly commit the transaction. Otherwise, the changes will be rolled back when the connection is closed.