discourse/migrations/bin/import

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
435 B
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative "../lib/migrations"
module Migrations
load_rails_environment
load_gemfiles("common")
configure_zeitwerk("lib/common")
module Import
class << self
def run
puts "Importing into Discourse #{Discourse::VERSION::STRING}"
puts "Extralite SQLite version: #{Extralite.sqlite3_version}"
end
end
end
end
Migrations::Import.run