discourse/migrations
Selase Krakani e7fe9f41b3
Some checks failed
Tests / themes system (push) Has been cancelled
Licenses / run (push) Has been cancelled
Linting / run (push) Has been cancelled
Migration Tests / Tests (push) Has been cancelled
Publish Assets / publish-assets (push) Has been cancelled
Tests / core backend (push) Has been cancelled
Tests / plugins backend (push) Has been cancelled
Tests / core frontend (Chrome) (push) Has been cancelled
Tests / plugins frontend (push) Has been cancelled
Tests / themes frontend (push) Has been cancelled
Tests / core system (push) Has been cancelled
Tests / plugins system (push) Has been cancelled
Tests / core frontend (Firefox ESR) (push) Has been cancelled
Tests / core frontend (Firefox Evergreen) (push) Has been cancelled
Tests / chat system (push) Has been cancelled
Tests / merge (push) Has been cancelled
DEV: Sync IntermediateDB to support user_fields.show_on_signup (#34845)
Support newly added column on the `user_fields` core table
2025-09-24 17:28:28 +00:00
..
bin DEV: Add --reset option to import command (#33317) 2025-06-24 22:58:32 +02:00
config DEV: Add Intermediate DB support for user_associated_accounts (#34425) 2025-09-15 01:00:25 +00:00
db DEV: Sync IntermediateDB to support user_fields.show_on_signup (#34845) 2025-09-24 17:28:28 +00:00
docs DEV: Add initial structure for migrations-tooling 2023-10-13 16:03:55 +02:00
lib DEV: Sync IntermediateDB to support user_fields.show_on_signup (#34845) 2025-09-24 17:28:28 +00:00
scripts/benchmarks REFACTOR: Code generator for migrations IntemerdiateDB 2025-04-07 17:22:36 +02:00
spec DEV: Dynamically test all IntermediateDB entities (#34624) 2025-08-29 17:25:05 +02:00
.gitignore DEV: Adds a new converter for migrating from Discourse 2025-04-07 17:22:36 +02:00
.rubocop.yml DEV: Refactor migrations-tooling 2025-04-07 17:22:36 +02:00
migrations.rb DEV: Refactor migrations-tooling 2025-04-07 17:22:36 +02:00
README.md DEV: Add converter framework for migrations-tooling (#28540) 2024-09-09 17:14:39 +02:00

Migrations Tooling

Command line interface

./bin/cli help

Converters

Public converters are stored in lib/converters/. If you need to run a private converter, put its code into a subdirectory of private/converters/

Development

Installing gems

bundle config set --local with migrations
bundle install

Updating gems

bundle update --group migrations

Running tests

You need to execute rspec in the root of the project.

bin/rspec --default-path migrations/spec