The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/docs/ImportExport/Migrating-from-old-Wekan-ma...

1.7 KiB

Migrations from every possible old Wekan version are not implemented yet.

Here are some starting points.

1) Required: Backups

https://github.com/wekan/wekan/wiki/Backup

Do backups to multiple places. And test does restore work, with restore script already made.

2) You can save all data from MongoDB to .json files and compare them

That way you can also edit files to fix something, and also save back to MongoDB:

3) Change text in all files in current directory in-place

Take backup before runnning this.

Using sed on Linux or Mac.

sed -i 's|FindThisText|ReplaceWithThisText|g' *

4) Example: From v0.77 to newest

v0.77

Newest

5) Some migrations could be missing

Some of the database schema can be different. If you see difference in these files, you could fix it for everybody by adding new code to migrations, so old schema is converted to new one automatically when Wekan starts.

6) Inform Wekan about what is missing

a) Add issue

b) Create pull request