Is there documentation for the Rails column types?
I’m looking for more than the simple type listing that is found on this page: :primary_key, :string, :text, :integer, :float, :decimal, :datetime, :timestamp, … Read more
I’m looking for more than the simple type listing that is found on this page: :primary_key, :string, :text, :integer, :float, :decimal, :datetime, :timestamp, … Read more
I want to display dates in the format: short day of week, short month, day of month without leading zero but including “th”, … Read more
I’m trying to find all Users with an id greater than 200, but I’m having some trouble with the specific syntax. User.where(:id > … Read more
I’m having a really frustrating issue: Rake is being dumb. Here’s how the problem comes about: $ rails new test_app $ rails generate … Read more
I am trying to convert a name from snake case to camel case. Are there any built-in methods? Eg: “app_user” to “AppUser” (I … Read more
I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example: … Read more
I need to add timestamps (created_at & updated_at) to an existing table. I tried the following code but it didn’t work. class AddTimestampsToUser … Read more
I made a rails project with, rails new test_bootstrap. succeeded. moved to the project dir and added the gems gem “therubyracer” gem “less-rails” … Read more
Suppose I have the following two objects: first_name_relation = User.where(:first_name => ‘Tobias’) # ActiveRecord::Relation last_name_relation = User.where(:last_name => ‘Fünke’) # ActiveRecord::Relation is it … Read more
I have a rake task that won’t work unless a table exists. I’m working with more than 20 engineers on a website so … Read more