(self, column_name, value)
| 130 | ) |
| 131 | |
| 132 | def references_to_sql(self, column_name, value): |
| 133 | return {"constraint": f"foreign key ({column_name}) references {value}"} |
| 134 | |
| 135 | |
| 136 | class PostgresAdapter(AbstractAdapter): |
nothing calls this directly
no outgoing calls
no test coverage detected