iceshrimp-legacy/docs/migrate.md

106 lines
3.8 KiB
Markdown
Raw Normal View History

2023-07-15 23:21:17 +02:00
# 🚚 Migrating from Misskey/FoundKey to Firefish
2023-02-20 21:13:55 +01:00
All the guides below assume you're starting in the root of the repo directory.
2023-05-03 01:53:57 +02:00
### Before proceeding
- **Ensure you have stopped all master and worker processes of Misskey.**
- **Ensure you have backups of the database before performing any commands.**
2023-05-03 01:53:57 +02:00
2023-02-20 21:13:55 +01:00
## Misskey v13 and above
2023-05-03 01:53:57 +02:00
Tested with Misskey v13.11.3.
If your Misskey v13 is older, we recommend updating your Misskey to v13.11.3.
2023-02-20 21:13:55 +01:00
```sh
2023-07-19 06:21:48 +02:00
wget -O mkv13.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13.patch
wget -O mkv13_restore.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/mkv13_restore.patch
2023-05-03 01:53:57 +02:00
git apply mkv13.patch mkv13_restore.patch
2023-02-20 21:13:55 +01:00
cd packages/backend
2023-05-03 01:53:57 +02:00
LINE_NUM="$(pnpm typeorm migration:show -d ormconfig.js | grep -n activeEmailValidation1657346559800 | cut -d ':' -f 1)"
NUM_MIGRATIONS="$(pnpm typeorm migration:show -d ormconfig.js | tail -n+"$LINE_NUM" | grep '\[X\]' | wc -l)"
2023-02-20 21:13:55 +01:00
2023-05-03 01:53:57 +02:00
for i in $(seq 1 $NUM_MIGRATIONS); do pnpm typeorm migration:revert -d ormconfig.js; done
cd ../../
2023-02-20 21:13:55 +01:00
2023-07-19 06:21:48 +02:00
git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
2023-05-03 01:53:57 +02:00
git fetch origin
git stash push
rm -rf fluent-emojis misskey-assets
git switch main # or beta or develop
2023-02-20 21:13:55 +01:00
git pull --ff
2023-07-19 06:21:48 +02:00
wget -O renote_muting.patch https://gitlab.prometheus.systems/firefish/firefish/raw/branch/develop/docs/renote_muting.patch
2023-05-03 01:53:57 +02:00
git apply renote_muting.patch
2023-02-25 19:08:37 +01:00
2023-05-03 01:53:57 +02:00
pnpm install
NODE_ENV=production pnpm run build
pnpm run migrate
git stash push
2023-02-20 21:13:55 +01:00
```
2023-03-29 23:10:00 +02:00
Depending on the version you're migrating from, you may have to open Postgres with `psql -d your_database` and run the following commands:
```sql
ALTER TABLE "meta" ADD COLUMN "disableLocalTimeline" boolean DEFAULT false;
ALTER TABLE "meta" ADD COLUMN "disableGlobalTimeline" boolean DEFAULT false;
ALTER TABLE "meta" ADD COLUMN "localDriveCapacityMb" integer DEFAULT 512;
ALTER TABLE "meta" ADD COLUMN "remoteDriveCapacityMb" integer DEFAULT 128;
ALTER TABLE "user" ADD COLUMN "isSilenced" boolean DEFAULT false;
ALTER TABLE "user" ADD COLUMN "isAdmin" boolean DEFAULT false;
ALTER TABLE "user" ADD COLUMN "isModerator" boolean DEFAULT false;
ALTER TABLE "user" ADD COLUMN "remoteDriveCapacityMb" integer DEFAULT 128;
ALTER TABLE "user" ADD COLUMN "driveCapacityOverrideMb" integer DEFAULT 128;
ALTER TABLE "instance" ADD COLUMN "caughtAt" date;
ALTER TABLE "instance" ADD COLUMN "latestRequestSentAt" date;
ALTER TABLE "instance" ADD COLUMN "latestStatus" character varying(512);
ALTER TABLE "instance" ADD COLUMN "lastCommunicatedAt" date;
```
2023-07-03 00:18:30 +02:00
then quit with `\q`, and restart Firefish.
2023-03-29 23:11:01 +02:00
2023-05-03 01:53:57 +02:00
Note: Ignore errors of `column "xxx" of relation "xxx" already exists`.
2023-07-03 00:18:30 +02:00
If no other errors happened, your Firefish is ready to launch!
2023-05-03 01:53:57 +02:00
2023-02-20 21:13:55 +01:00
## Misskey v12.119 and before
```sh
2023-07-19 06:21:48 +02:00
git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
2023-02-20 21:13:55 +01:00
git fetch
git checkout main # or beta or develop
git pull --ff
2023-02-25 19:08:37 +01:00
NODE_ENV=production pnpm run migrate
2023-02-20 21:13:55 +01:00
# build using prefered method
```
## FoundKey
2023-02-20 21:13:55 +01:00
```sh
cd packages/backend
sed -i '12s/^/\/\//' ./migration/1663399074403-resize-comments-drive-file.js
2023-02-20 21:13:55 +01:00
LINE_NUM="$(npx typeorm migration:show -d ormconfig.js | grep -n uniformThemecolor1652859567549 | cut -d ':' -f 1)"
2023-07-10 18:50:54 +02:00
NUM_MIGRATIONS="$(npx typeorm migration:show -d ormconfig.js | tail -n+"$LINE_NUM" | grep '\[X\]' | wc -l)"
2023-02-20 21:13:55 +01:00
2023-07-10 18:50:54 +02:00
for i in $(seq 1 $NUM_MIGRATIONS); do
2023-02-20 21:13:55 +01:00
npx typeorm migration:revert -d ormconfig.js
done
2023-07-19 06:21:48 +02:00
git remote set-url origin https://gitlab.prometheus.systems/firefish/firefish.git
2023-02-20 21:13:55 +01:00
git fetch
git checkout main # or beta or develop
git pull --ff
2023-02-25 19:08:37 +01:00
NODE_ENV=production pnpm run migrate
2023-02-20 21:13:55 +01:00
# build using prefered method
```
2023-03-31 04:34:42 +02:00
## Reverse
2023-07-15 23:21:17 +02:00
You ***cannot*** migrate back to Misskey from Firefish due to re-hashing passwords on signin with argon2. You can migrate from Firefish to FoundKey, although this is not recommended due to FoundKey being end-of-life.