mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
7f6d0919c9
This PR puts the initial infrastructure for the LLM service's database in place. The LLM service will be using a separate Postgres database, with its own set of migrations. Currently we only connect to the database in development, as we don't yet have the database setup for the staging/production environments. Release Notes: - N/A
4 lines
95 B
Plaintext
Executable File
4 lines
95 B
Plaintext
Executable File
psql -c "DROP DATABASE zed (FORCE);"
|
|
psql -c "DROP DATABASE zed_llm (FORCE);"
|
|
script/bootstrap
|