Tagged Questions
1
vote
3answers
61 views
Unexpected ',' expecting ')' in update_attributes - Rails
I'm trying to make a Migration but I'm having some troubles. When I try to run "rake db:migrate" on Heroku I got an error message. Now I discover in my localhost that my code in the migration has ...
1
vote
0answers
14 views
How do I reference a tiny_tds connection in ruby/sinatra via database.yml (or other)?
I'm trying to figure out how to pull data from a database without the need to place a connection string at the top of each ruby file.
I'm learning the basics of ruby via a little Sinatra app I'm ...
0
votes
2answers
19 views
Rails Database Design with Similar models with different attributes
I am designing an application that has many types of "requests" the requests are to be handled in a very similar nature to one another but they contain different data.
They each have about 1/3 of the ...
0
votes
1answer
20 views
How Should I use percent values in my database for a Rails app?
I am very new to Ruby on Rails, and I was looking for a way to include decimals in my database. For example, if I wanted to take a total score and and multiply it by a certain rate to get a new ...
0
votes
1answer
19 views
Rails Heroku database missing data
I'm new to Rails and Heroku.
I don't partly understand system of databases (testing, production, development).
I created two Rails apps. First with Rails' default sqlite db and second with ...
-2
votes
1answer
29 views
Rails Database Entry, Values are all question marks
I am trying to run a create method in rails, to insert items into a database. The code for my create is as follows:
def create
@song = Song.create ( { :song => params[:song],
:artist => ...
0
votes
1answer
17 views
Destroy dependent objects in Rails using one transaction
Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
0
votes
1answer
20 views
How to restore database tables from MySQL Database
hi everybody i'm new to Ruby on Rails...
I created a Rails Application for that i created a database called 'cart' in MySQL database by using rake command. but unfortunately my database got crashed. ...
0
votes
0answers
23 views
rails upload csv with FasterCSV to database IN UTF8
rails - 2.3.8
ruby - 1.8.7
I really searched old questions but found nothing.
The deal is: Read from a .csv and update that info to my table in UTF8, but special chars like 'á','è','û' are changed ...
0
votes
1answer
26 views
Why do I keep getting the Heroku 500 error?
I am new to rails development and I keep getting an error from heroku
Application.js:
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed ...
1
vote
1answer
15 views
In Rails 3, how can I save user search history to the database with no membership/authentication system?
Currently, the site is storing "previously viewed items" via cookies.
I need to take that a step further and not only store those items in the database, but save the user's most recent search, so ...
0
votes
1answer
47 views
What is the best way to store a user's Facebook friends list in my database?
Overview
I'm creating a Ruby on Rails website which uses Facebook to login.
For each user I have a database entry which stores their Facebook User ID along with other basic information.
I'm also ...
0
votes
1answer
14 views
How to fix PGError in rails for ActiveRecord?
I am trying to get the unique values in the column 'genre' in Rails. The commented out section works on localhost but in production I get a PG Error: ActiveRecord::StatementInvalid (PGError: ERROR: ...
0
votes
1answer
21 views
Efficient way to pull data from second database?
We have a primary database where all of our app resides.
But there's a second database (updated from an external source), that I'd like to be able to connect to so I can pull data from it. I don't ...
0
votes
1answer
15 views
Rails preference tables and over-riding
I'm wondering what the best way is to go about the following design problem:
I have a User which will have a Preferences table. I will also have a Venue, which belongs to a user. I want the following ...
0
votes
1answer
35 views
How to make database entries stick to a User's account if those entries were created before the User account was
I'm trying to think of the best way to allow users to create database objects without creating an account but then associating those objects with a user's account when they decide to sign up. I will ...
1
vote
1answer
82 views
Rails Connecting to database specified by database.yml
I recently restarted POW. On reloading the Rails app I'm working on, it hung.
Checking Rails' logs I get the following repeating every 5-20 seconds:
Connecting to database specified by database.yml
...
0
votes
1answer
24 views
An alternative to nested has many relationships
I am porting a very old legacy application from PHP to rails and came across some functionality that I am not sure how to implement in a 'proper' RoR way.
Basically we have a signup form that ...
2
votes
3answers
19 views
Three text fields for one database entry for rails
I currently have one text field for a date entry, I am trying to split the year, month and day up into three individual entries, seperated by '/'. The original text entry looks like:
<%= ...
0
votes
0answers
15 views
Heroku: Database serialized field bug after deploy
I think everything is properly configured for a database serialized field to work as expected. It's working indeed, in local development environment.
In Heroku production though, reading the ...
0
votes
1answer
22 views
Rails Migration - Non-Static Default Value
I had a quick question about setting the default value of a column in a Rails migration to a non-static value.
I have a "Users" table that already has the columns id, first_name, and last_name, and I ...
0
votes
1answer
54 views
Rails can't find database column just created
I've just run a migration to add a :new_column to :my_table. This is a serialized column (first one in entire project), so I've added the configuration to the model:
serialize :new_column, Array
My ...
0
votes
1answer
19 views
Why do a add_index migration add the type string to a column if not called otherwise
I have a table with an already existant t.integer :column_name.
If i do a rails g migration add_index_to_table_name column_name:uniq the already existent column_name will created new with a string ...
0
votes
1answer
15 views
Adding index :unique to a column in ruby on rails via generate migration
I know that i can touch a migration and add
add_index :table_name, :column_name, :unique => true
But how is the right rails migration command to generate this?
rails g migration ...
0
votes
1answer
24 views
Removing redundant queries using Active Record
The following code works, but runs far too many SQL statements for my liking;
User.includes([:profile,:roles]).select("id, email, created_at, confirmed_at, countries.name").find_in_batches do |users| ...
0
votes
1answer
22 views
rake db:test:prepare or :clone dont create test database
As topic says, if I do a rake db:test:prepare or rake db:test:clone no test.sqlite3 gets created. Also did a db:migrate before
Terminal dont give any output.
Thats my database.yml
sqlite: ...
0
votes
2answers
21 views
Database structure in a Rails project and keep track of migrations
So after alot of reading i found out that i dont need to plan my database ahead. I just start working on the application and do migrations on every change.
So for example if I decide to add something ...
0
votes
1answer
34 views
Publish all changes Rails
I have a Rails app where an admin is able to create and edit records in the database, so he/she is working on a list of records. While the admin is editing the records, these changes shouldn't be ...
1
vote
1answer
58 views
rake db:create:all FATAL : password authentication failed
I am trying to follow this railscast tutorial. Now I am in the step, where you create the database with rake db:create:all, but I got this error message :
FATAL: password authentication failed for ...
1
vote
0answers
40 views
Storing fractions in Ruby on Rails
What is the recommended way of storing fractions for measurements in the Ruby on Rails framework? I have a project where I'm storing measurements, such as 3 3/4 or 5 7/8.
I must be able to retrieve ...
0
votes
2answers
30 views
create new Table in ruby on rails
So I try to create a new table in rails. Every example I find and try sadly does not work with me...
so that's what I tried till now: (I use Ruby version 1.9 and Rails Version 3.2.13
making a new ...
0
votes
1answer
13 views
Is a migration necessary for generating an ID in a has_many/belongs_to relationship?
I have a rails app with two related classes. Pet has_many Toys, and a Toy belongs_to a Pet.
In order to have an index of Toys by Pets (meaning for every toy I want to have an index identifier ...
0
votes
1answer
19 views
Ruby on Rails, datatable. multiple records for one user
I am a bit confused about creating and inserting data in the table.
For example, I have user-table, where all users are saved. A payment-table should save all payments made by user A. The payments ...
0
votes
4answers
20 views
Db migrate - Add/change a default in a rails app in the `change` method
I am adding a new migration to my rails app's database, in it I am adding columns to a new application. Some of the columns have defaults.
I would like to add defaults to some of the existing columns ...
0
votes
0answers
24 views
Cucumber+Capybara+Rails doesn't render models
I have Model Product and I render it with <%= render @products %>. I have template _product.html.erb wich contains <%= link_to product.name, product %>. When I visit this page in browser ...
0
votes
1answer
25 views
One-to-Many Relation [Ruby on Rails]
I don't know if the relation between property and owner working or not , when I tried a query I got this error:
Loading development environment (Rails 3.2.13)
irb(main):001:0> ...
0
votes
2answers
31 views
add_index error [Ruby on Rails]
I am trying to create a "one-to-many relationship between owner and property" but I don't know why I am getting this error, after generating a model I tried to add_index before run rake db:migrate but ...
0
votes
1answer
20 views
Can I use the syntax parent.Childs.create multiple times, when declaring a parent and two child records?
customer=Customer.new #create a new Customer object
customer.id =1000+i #Id needs to be set first because otherwise its automatically set
customer.update_attributes(
:fname=>'mike',
...
0
votes
2answers
39 views
Fetching data from one db and saving it in another in rails
I have an app that uses SQLite now. And now I am changing it to PostgreSQL. The table structure is changed. But I want to import the data from the previous db to the new one.
How can I fetch the ...
0
votes
2answers
28 views
what is the proper syntax for seeding a child table?
I'm trying to seed a parent table and a child table. Seeding the parent works fine but I don't know the syntax for seeding the child. Please help.
Contact.delete_all
Customer.delete_all
...
0
votes
1answer
27 views
Rails image from model
Hi could somebody help me out, I'm doing a rails project and am only starting out so not sure what to do. I am trying to display an image on an index page in the public folder, I also have an image ...
4
votes
1answer
56 views
Tricky Rails ActiveRecord (SQL is acceptable!) query to find a proportion of users given conditions in two join tables
class User < ActiveRecord::Base
has_many :views
has_many :rates
...
end
class Resource < ActiveRecord::Base
has_many :views
has_many :rates
...
end
I am researching whether the ...
0
votes
1answer
17 views
View formatted sqlite results
So I code using ruby on rails and the default database is sqlite, which is amazing for development. there is no setup time, no need for connection etc. What really sucks is the output on the command ...
0
votes
0answers
82 views
NoMethodError: undefined method `result' for #<NoMethodError: undefined method `fields' for nil:NilClass>
I am having the following error randomly when running rspec with capybara and poltergeist:
NoMethodError: undefined method `result' for #<NoMethodError: undefined method `fields' for ...
0
votes
2answers
50 views
How to make a check box?
Hello. I am totally new to Ruby on Rails and I want to know how to make a checkbox or link_for in a Ruby on Rails application that will change the value of an attribute called admin in a table called ...
0
votes
3answers
45 views
How can I update an entire table column
I have a Micropost table with columns user_id and sender_id (both integers). I've just added the sender_id column and by default it's value is nil for existing table rows. As a one time thing I want ...
0
votes
1answer
37 views
Uploading Images without using ImageMagick
I don't want to have to configure imagemagick but want to use a gem to be able to upload a picture from a form and put it into a database. Are there other options out there? I tried dragonfly and ...
0
votes
1answer
28 views
Generating Models based of other models ruby on rails
So I have a model of Items with the following fields:
Name (string)
Description (text)
Hider (string)
Seeker (string)
Long (float)
Lat (float)
Keyword (string)
Found (boolean)
Highscore should ...
0
votes
1answer
44 views
How to add external data to database using rake db:seed?
I have the following in my seeds.rb file. When I run rake db:seed, I get an error saying:
rake aborted!
No such file or directory - MSFT_1_100.json
This displays even though I have the file ...
0
votes
1answer
41 views
Use ajax to query database for presence of item. Rails 3
I'm trying to query our database on the .click function. I can alert(val) so that's working. But I'm trying to figure out how to go to the database and find out if a record in Discount table exists ...





