search for: step_id

Displaying 3 results from an estimated 3 matches for "step_id".

Did you mean: step_
2006 Jan 02
13
Naming Conventions
So, RoR is better at grammer than I. Well so is my nine year old. If I have a table named "people_type" will Rails see this as singular because of the _type or will it consider it the plural of "person_type" ? Is there a link to Rails that lists what words it knows, or what words not to use in table design etc. Kindest regards. -- Posted via http://www.ruby-forum.com/.
2008 Dec 22
7
Help creating and using database
I have this problem. I have a Job table in my db, and each job has many steps (table Step). Is not possible to know how many steps a job has until it is created. So when I create a new job I have a problem: I can not have a step_id in my Job table, because it can be one step or more. What can I do? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this grou...
2006 Jul 02
2
Problems implementing a N:M table that contains actual data
...9;'s what i''m trying to do. +-------+ +-------------+ +-----+ |clients|----------|clients_steps|-------------|steps| +-------+ +-------------+ +-----+ |id | |client_id | |step_id | |completed_at | +-------------+ | +--------------+ |documents | +--------------+ |client_step_id| | more |...