Official Discord Bot for Overextended.
This bot is still in development and is intended as a future replacement for the current bot used in the Overextended Discord. If you plan to use it for your own Discord, please review the code to tailor it to your needs. We will not provide support for this bot; the code is shared for transparency and because most Overextended projects are open-source.
We use Drizzle Kit to manage schema migrations and inspect the database. All CLI interactions run through nubx drizzle-kit ...
| Command | Action |
|---|---|
nubx drizzle-kit generate |
Creates a new SQL migration based on schema changes. |
nubx drizzle-kit migrate |
Executes pending SQL migrations against the database. |
nubx drizzle-kit push |
Directly syncs schema changes without migration files. |
nubx drizzle-kit studio |
Opens a web-based UI to view and edit database rows. |
Warning
push directly alters your database schema without generating version-controlled SQL migration files. Use this primarily in local development.