remove old & useless import script

This commit is contained in:
Régis Hanol 2014-11-27 19:30:19 +01:00
parent 5b90ceb71d
commit 65c106325c
1 changed files with 0 additions and 24 deletions

View File

@ -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