mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 05:30:44 +08:00
17 lines
311 B
Ruby
Executable file
17 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
|