discourse/migrations/bin/convert
Gerhard Schlager d286c1d5a1
DEV: Prepare new structure for migrations-tooling (#26631)
* Moves existing files around. All essential scripts are in `migrations/bin`, and non-essential scripts like benchmarks are in `migrations/scripts`
* Dependabot configuration for migrations-tooling (disabled for now)
* Updates test configuration for migrations-tooling
* Shorter configuration for intermediate DB for now. We will add the rest table by table.
* Adds a couple of benchmark scripts
* RSpec setup especially for migrations-tooling and the first tests
* Adds sorting/formatting to the `generate_schema` script
2024-04-15 18:47:40 +02:00

33 lines
729 B
Ruby
Executable File

#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative "../lib/migrations"
module Migrations
load_gemfiles("common")
configure_zeitwerk("lib/common", "lib/converters")
module Convert
class CLI < Thor
desc "execute", "Run the conversion"
def execute
FileUtils.mkdir_p("/tmp/converter")
::Migrations::IntermediateDatabaseMigrator.reset!("/tmp/converter/intermediate.db")
::Migrations::IntermediateDatabaseMigrator.migrate("/tmp/converter/intermediate.db")
# require_relative "converters/pepper/main"
end
desc "version", "Print the version"
def version
puts "0.0.1"
end
end
end
end
Migrations::Convert::CLI.start(ARGV)