mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
|
#!/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
|