mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
d286c1d5a1
* 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
33 lines
729 B
Ruby
Executable File
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)
|