discourse/migrations/import

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

18 lines
311 B
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
# frozen_string_literal: true
puts "Loading application..."
require_relative "../config/environment"
module Migrations
module Import
class << self
def run
puts "Importing into Discourse #{Discourse::VERSION::STRING}"
end
end
end
end
Migrations::Import.run