mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
remove old & useless import script
This commit is contained in:
parent
5b90ceb71d
commit
65c106325c
1 changed files with 0 additions and 24 deletions
|
@ -1,24 +0,0 @@
|
||||||
# custom importer for www.t-nation.com, feel free to borrow ideas
|
|
||||||
|
|
||||||
require File.expand_path(File.dirname(__FILE__) + "/base.rb")
|
|
||||||
require "mysql2"
|
|
||||||
|
|
||||||
class ImportScripts::Tnation < ImportScripts::Base
|
|
||||||
|
|
||||||
DATABASE = "tnation"
|
|
||||||
|
|
||||||
def initialize
|
|
||||||
super
|
|
||||||
|
|
||||||
@client = Mysql2::Client.new(
|
|
||||||
host: "localhost",
|
|
||||||
database: DATABASE
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def execute
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
ImportScripts::Tnation.new.perform
|
|
Loading…
Reference in a new issue