Files
directus/docs/self-hosted/upgrades-migrations.md
Rijk van Zanten c723085902 Move docs to monorepo (#18052)
* Move docs to monorepo

* Tweaks
2023-04-04 18:23:58 -04:00

135 lines
4.8 KiB
Markdown

---
description:
A Project is a complete instance of Directus, including its **Database**, config file, asset storage, and any custom
extensions.
readTime: 4 min read
---
# Upgrades & Migrations
> A Project is a complete instance of Directus, including its **Database**, config file, asset storage, and any custom
> extensions. [Learn more about Projects](/getting-started/glossary#projects).
## Upgrading / Updating a Project
1. Backup your project
2. Run `npm update`
3. Run `npx directus database migrate:latest` to update the DB
## Backing-up a Project
1. Make a copy of the **files within each storage adapter**, and store them in a safe place.
2. Make a copy of the `/api/.env` file, and store it in a safe place.
3. Create a database dump.
## Migrating a Project
Directus doesn't rely on anything besides the database for it's operation. Therefore, migrating your Directus project
can be done by moving the whole database to a new location using a database dump.
::: tip File Storage
If you have files uploaded, make sure to copy those over as well, or use the same storage location in the new location
of Directus.
:::
## Downgrading a Project
Directus can be reverted to an earlier version by going to your terminal, navigating into your project folder and
running `npm install directus@<version>`.
If you ran any database migrations for a newer version, you can revert those by running
`npx directus database migrate:down`
## Deleting a Project
1. Optional: **Backup any local files** stored within the project's root directory
2. Optional: **Backup any custom code and extensions** within the project's root directory
3. Optional: **Backup your entire database**, only system tables, or only project tables
4. **Delete the project's root directory** from the server
5. **Delete all Directus system tables** (`directus_*`) from the database
::: tip Pure SQL
After completing this process, you will be left with a pure SQL database, with no trace that Directus was ever
installed. Any external services connecting to your database's project tables directly (e.g., SQL queries) should
continue working normally.
:::
## Migrating from Version 8
There are two ways to migrate from an existing Directus 8.X instance:
- [Automated Script](#automated-script) (recommended)
- [Manual Database Export/Import](#manual-database-export-import)
Be sure to check the [Breaking changes](#breaking-changes) if you are consuming the API from an application.
## Automated Script
We created a (community maintained) script, that will automatically copy over the schema, content, files, users, and
roles from an existing v8 instance to a new v8 instance. This is the most hands-off approach to moving from a v8 to a
version v9 instance, and is the recommended way of migrating your v8 instance.
::: tip
The script, and instructions on how to run it, can be found on the\
[`directus-community/migration-tool`](https://github.com/directus-community/migration-tool) repo.
:::
This tool will copy over:
- Schema (collections / fields)
- Files (including file contents)
- User data (e.g., all items in all collections)
- Roles
- Users
Due to significant differences in data structure between versions, this tool will **NOT** copy over:
- Interface/display configurations
- Permissions
- Activity / revisions
## Manual Database Export/Import
::: warning Automated
We highly recommend using the automated migration tool mentioned above. If that's not possible, you can perform the
following steps to migrate your v8 instance.
:::
Directus v9 is a breaking change coming from v8 (hence the major version bump), so you won't be able to just use your
existing v8 database and run v9 on top of it. However, due to the database-mirroring approach of Directus, it's fairly
straightforward to migrate your content from v8 to v9.
#### 1) Setup a Fresh v9 Instance
By installing Directus "fresh", you're ensured your system tables are up-to-date and ready to go.
#### 2) Migrate your Data
Using a tool like [Sequel Pro](http://sequelpro.com) or [TablePlus](https://tableplus.com), export your v8 user-tables
and import them into your v9 database.
Directus v9 will automatically recognize your tables, and you'll be ready to get started in v9.
**Note:** If you have references to users and files, make sure to update them to the new UUID format.
#### 3) Configure Directus
Once the tables are in, you can start configuring the details of the schema. This includes choosing the correct
interfaces, displays, and their options for your fields.
This would also be a good time to reconfigure your permissions, to ensure they are accurate.
## Breaking changes
- [Filter operators](/reference/filter-rules) have changed, now they are preceded with an underscore e.g.:
`/items/users?filter[comments.thread.title][like]=Directus` is now
`/items/users?filter[comments][thread][title][_like]=Directus`