chciałem wrzucić kilka modeli do osobnego katalogu, są to subklasy klasy Question, dodałem w environment.rb
config.load_paths += %W( #{RAILS_ROOT}/app/models/questions )
i dostaję błąd
The single-table inheritance mechanism failed to locate the subclass: ‘Radio’. This error is raised because the column ‘question_type’ is reserved for storing the class in case of inheritance. Please rename this column if you didn’t intend it to be used for storing the inheritance class or overwrite Question.inheritance_column to use another column for that information.
jeśli modele są w jednym katalogu to jest ok.