mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 16:02:46 +08:00
18 lines
311 B
Ruby
Executable File
18 lines
311 B
Ruby
Executable File
#!/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
|