vote up 1 vote down star
1

Hi,

I'm wondering what the best way is to store user settings? For a web 2.0 app I want users to be able to select certain settings. At the moment is it only when to receive email notifications.

The easiest way would be to just create a Model "Settings" and have a column for every setting and then have a 1-1 relationship with users.

But is there a pattern to solve this better? Is it maybe better to store the info in the user table itself? Or should I use a table with "settings_name" and "settings_value" to be completely open about the type of settings stored there (without having to run any migrations when adding options)?

What is your opinion?

Thanks

flag

66% accept rate

3 Answers

vote up 1 vote down check

We use the helpful plugin called HasEasy. It stores the data in a vertical table, but allows you to add validations, pre/post storage processing, types, etc.

link|flag
That sounds interesting, but the link you posted is dead. Also Google didn't help. Any hints on where to find the plugin? – ole_berlin Nov 5 at 17:20
link works for me – DanSingerman Nov 5 at 17:27
strange, I get a "Page doesn't exist" on github.com/cjbottaro/has_easy – ole_berlin Nov 5 at 18:16
ahhh, with www. it works: github.com/cjbottaro/has_easy – ole_berlin Nov 5 at 18:17
Ok, I have no clue why the link doesn't work the first time. You refresh the page after you get the page not found and it goes right to it. – ScottD Nov 5 at 21:29
show 1 more comment
vote up 3 vote down

The "open" table approach makes it difficult to model with AR, since you have to worry about the types of the data (boolean, int, string, etc). I've always added prefs as columns on the users table, and then move them out to a user_preferences table if there are "too many" of them. It's simple, and it's easy to work with.

link|flag
vote up 1 vote down

If the user settings are not meant to be findable (via a User.find_by_x_preference, e.g.) you could also store them in a serialized column as a hash. This is the use case described in the rails docs (http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002334&name=serialize#), actually.

class User
  serialize :preferences
end

u = User.new
u.preferences = {:favorite_color => "green", :favorite_book => "Moby Dick"}
link|flag

Your Answer

Get an OpenID
or

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