CJ_Clippy
5e83742341
ci / build (push) Failing after 3s
Details
|
||
---|---|---|
.. | ||
migrations | ||
README.md | ||
index.js | ||
package.json | ||
pnpm-lock.yaml |
README.md
@futureporn/migrations-data
Here we handle data migrations for the postgrest database.
@see https://github.com/zakpatterson/postgres-schema-migrations
Reminder: only write migrations that affect data. (don't write migrations that affect schema)
K.I.S.S.
Keep It Stupidly Simple.
We are keeping this module as simple as possible. This means pure JS (no typescript!)
troubleshooting
If you see the following error, graphile_worker likely hasn't had a chance to create it's functions. Make sure that a graphile_worker is running, so it can automatically create the necessary functions.
{
"code": "42883",
"details": null,
"hint": "No function matches the given name and argument types. You might need to add explicit type casts.",
"message": "function graphile_worker.add_job(text, json, max_attempts => integer) does not exist"
}