Search Results

2
votes

From objects to tables using activerecord

Even if you could dynamically create tables on the fly like that (not saying that you can). I wouldn't want to do that. There is so much potential for error there. I would create the migr …
4
votes

Basic Rails question: manually inserting a row into a database table

You create rows in your database by creating and saving new ActiveRecord Objects (your models). So in your controller code you could create a new row of DataTypeTwo by doing …