I have a migration that will dynamically create tables on fly per date. Something like this:

class CreateCollectorPeriodTable < ActiveRecord::Migration

  def self.create_with(name)  
    create_table name.to_sym do |t|
      t.string :text, :limit => 1024
    end
  end 
end

I want to create a model that will access this migration..

I did read this: Rails Generate Model from Existing Table?, but in another question someone explained why I shouldn't try and make one model fit many tables..

Any suggestions?

link|improve this question

40% accept rate
Could you explain a bit more the reasoning behind this? What are you trying to achieve? – nathanvda Jan 12 '11 at 21:24
feedback

1 Answer

up vote 1 down vote accepted
class CreateCollectorPeriodTable < ActiveRecord::Migration
  # name should be plural
  # i.e.: name = 'chickens'
  def self.create_with(name)  
    create_table name.to_sym do |t|
      t.string :text, :limit => 1024
    end
    model_file = File.join("app", "models", name.singularize+".rb")
    model_name = name.singularize.capitalize
    File.open(model_file, "w+") do |f|
      f << "class #{model_name} < ActiveRecord::Base\nend"
    end
  end 
end
link|improve this answer
wow that's slick. Thank you so much! – Tommy Jan 12 '11 at 20:51
1  
This will work. Only it seems to me almost identical to rails g model <model-name> text:string, so not sure what the use-case is. – nathanvda Jan 12 '11 at 21:26
@nathanvda, absolutely :) for me it is quite strange task – fl00r Jan 12 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.