> > I have a lot of tables. I split them up among multiple model files to > help with organization. My app is highly dynamic and data are changing > in all the tables constantly. If I understand it correctly, putting > the tables in modules and setting track_changes(False) would mean the > tables would only be created once. I haven't thought it through > completely, but it would seem that that would not cause any problems. > What do you think? >
Note, even with track_changes(True), the module will only be reloaded if the file actually changes. Anthony

