discourse/migrations/lib/common
Gerhard Schlager 58558849ac
DEV: Add options to run only or skip some steps in converter and importer (#35127)
Examples:

* Run only the "badges" and "users" steps in the converter:
  ```
  migrations/bin/cli convert discourse --reset --only=badges,users
  ```

* Run all steps except "users" in the converter:
  ```
  migrations/bin/cli convert discourse --reset --skip=users
  ```

* Run only the "badges" step in importer:
   This also runs all steps that "badges" depends on (e.g. "users" and "uploads").
  ```
  migrations/bin/cli import --reset --only=badges
  ```

* Run only the "badges" step in importer and skip the "users" on which "badges" depends:
  ```
  migrations/bin/cli import --reset --only=badges --skip=users
  ```
2025-10-03 16:44:36 +02:00
..
set_store DEV: Add Migrations::SetStore to work with nested sets of data (#33593) 2025-07-24 12:11:41 +02:00
class_filter.rb DEV: Add options to run only or skip some steps in converter and importer (#35127) 2025-10-03 16:44:36 +02:00
date_helper.rb REFACTOR: Code generator for migrations IntemerdiateDB 2025-04-07 17:22:36 +02:00
enum.rb DEV: Add ability to generate enums for IntermediateDB 2025-10-01 15:25:28 +02:00
extended_progress_bar.rb DEV: Refactor migrations-tooling 2025-04-07 17:22:36 +02:00
fork_manager.rb DEV: Add converter framework for migrations-tooling (#28540) 2024-09-09 17:14:39 +02:00
id.rb DEV: Add Upload to IntermediateDB (#29780) 2025-01-20 23:16:30 +01:00
set_store.rb DEV: Add Migrations::SetStore to work with nested sets of data (#33593) 2025-07-24 12:11:41 +02:00
topological_sorter.rb DEV: Add options to run only or skip some steps in converter and importer (#35127) 2025-10-03 16:44:36 +02:00