2021-01-24 16:18:54 +08:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2020-06-15 10:58:47 +08:00
|
|
|
module CartoDB
|
|
|
|
module Doubles
|
|
|
|
module Importer2
|
|
|
|
class Result
|
|
|
|
def initialize(attributes={})
|
|
|
|
self.table_name = attributes[:table_name]
|
|
|
|
self.name = attributes[:name]
|
|
|
|
self.support_tables = []
|
|
|
|
end
|
|
|
|
|
|
|
|
attr_accessor :support_tables, :table_name, :name
|
|
|
|
|
|
|
|
def update_support_tables(new_list)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|