0
votes
2answers
15 views

In Rails, how do I go over a db migration without executing it?

So I jumped onto this Rails project at work and I have my own copy of it running on my local devbox. I tried to run the tests to see what the results were but rake came back complaining that I had 5 ...
0
votes
0answers
5 views

Logging in Users in another table Devise

I am working with Devise in Rails 4. I have three different tables in my database. One is the overall User.rb that is generated by Devise. The Other two both belong to the table associated with ...
0
votes
4answers
52 views

how to remove “ ---\n- ''\n- ” new line space saved in database in ruby on rails

I am trying to save multiples roles for user (like Student, Teacher) in db from drop-down. I am using "Select" control <%= f.select :role,["Teacher","Student"],{},{:multiple => true ,:required ...
0
votes
0answers
15 views

Polymorphic has_one

I have user object, which can be two types: A or B, dependent of type, there are different fields. I created user model and table containing general info and tables user_A_data, and user_B_data with ...
0
votes
1answer
11 views

CSV file upload cancel Ruby on Rails

Im wondering whats the best way to handle this. I have a form_for with a couple of text_fields to fill and with a form.file_field(:file) , so a user can upload a csv file into the database. There is ...
0
votes
4answers
21 views

How do I copy relevant user information (not all of it) from one production database to another for a Ruby on Rails Heroku application

I have two applications on Heroku. One is a production app, the other is a staging app. I have a new database on the staging server. I need to copy over the relevant user information, which is ...
1
vote
1answer
17 views

Retrieve existing MongoDB collection after adding inheritance

I'm using Mongoid as my DB wrapper. I had a model with no inheritance and thousands of documents in the collection. I then refactored it to inherit from a base class. Now I can't retrieve the original ...
2
votes
0answers
25 views

Cancel Rails DB connection

I am writing an app that uses Server Side events with ActionController::Live. It is using the puma app server. A method in the Messages controller stays alive while the user is connected waiting for ...
0
votes
1answer
20 views

Securely providing the database password in a Rails app

As you know, you MUST provide the correct database name, username, and password for the database in the config/database.yml file, or your Rails app will refuse to work. In the default setup, your ...
-1
votes
0answers
29 views

Rails Movies Database API

I am currently creating a Rails Movie app, there is a Movies controller with obviously models and views etc.. So that my app can be the app i need it to be, I will need my database to have a ...
0
votes
2answers
30 views

Beginner Ruby on Rails: Migrating an existing psql database

So basically I am making a new sample application that will run using an external Postgres database and a model, both created by another programmer who has given me this project. I am supposed to ...
0
votes
1answer
17 views

Data dump filetype for not-yet-existant SQL database

A friend wants to start scraping data for a data-heavy site he wants me to try to build. I'm a (relatively new) Rails developer and don't know much about the data side of all this. If he's contracting ...
0
votes
1answer
33 views

Adding unique two-column index with already not unique data

I have a rails app and need to add a unique constraint, so that a :record never has the same (:user, :hour) combination. I imagine the best way to do this is by adding a unique index: add_index ...
1
vote
1answer
31 views

Delete all except the last x number of rows in database

Is there a way, using rake, to delete all but the last 30 or so results from the database? Would I have to get the database count, check the result from 30 back and then delete all with a creation ...
0
votes
2answers
35 views

Rails select query to MSSQL returns -1:Fixnum

I have Rails connected to an external MSSQL database. In database.yml the adapter is sqlserver. The code for the query: class External < ActiveRecord::Base def self.select_all_entries ...
0
votes
3answers
37 views

how to automatically delete a record from the database in rails

i have a rails table setup called products and its all working well, lets assume i want to auto delete a record 3 weeks after creation how do go about the code my product db is as follows class ...
0
votes
1answer
17 views

Storing array in database to prevent database hit in Rails

I am using the acts_as_taggable gem, which has a method tag_list, which produces an array of tags, but requires an SQL call. I have been research optimization and am curious if it would be good ...
0
votes
1answer
12 views

ActiveRecord Association for Grades App

A bit hard to explain with a title. I am making a test grades app with Ruby on Rails, and can't figure out the best ActiveRecord Association setup. Ideally: there are many Users, and there are ...
1
vote
1answer
36 views

Is there a normal range of database calls in rails app?

I have a Ruby on Rails app and it displays a list of programs. Each of those programs has a like/unlike button, so there is a database query for each program on whether or not a User Likes the program ...
0
votes
2answers
35 views

Database schema for multiple choice Trivia game

I'm trying to determine the most efficient db schema for a multiple choice trivia game. I have the questions and answers in a spreadsheet with the columns, 'question_id', 'level', 'question', ...
-3
votes
2answers
27 views

synchronization database rails application [closed]

In the case of process automation synchronization database, I want to design and develop an application migration management databases of different engines. In a first time, I want to focus on three ...
0
votes
1answer
33 views

Proper way to add forgeign keys in db?

So - I've been learning rails for the last 4 months and would like to think that I have a pretty good overview of it. Albeit, there are a few gray areas that I would like to make clearer. One being ...
0
votes
1answer
23 views

One to Many Relationship: List of many not showing up

I have a simple one to many relationship mapping users to posts. Here is the relevant part of the schema: create_table "users", :force => true do |t| t.string "username" t.string ...
-2
votes
0answers
27 views

Database extern in ruby on rails [closed]

I want to know how I can generate a class from a database extern which is not in my rails Application. I want really your help. Thanks you
0
votes
2answers
46 views

A better database model for holding postage prices

I wanted to create a Postage_costs table to hold postages costs, each postage_cost has a name, e.g Large Item, which has different costs(standard price and express postage price) depending on ...
0
votes
1answer
26 views

Postgres Bulk Data Import and Populate Associated Data

I have a Postgres database that gets updated from various external sources several times a day, and each record has fields like company_id and user_id that need to get looked up from an existing table ...
2
votes
2answers
54 views

Rails: Every user has a own database user

My customer has a existing database where every user has it's own database user and he wants that every user uses his own database user to log into the rails application. For my models of this ...
0
votes
3answers
38 views

Rails db:migrate cannot mass assign protected attributes

I am learning Rails with the book Agile Web Development with Rails 4th edition. Given the code for the migration below: class CombineItemsInCart < ActiveRecord::Migration def up ...
0
votes
0answers
12 views

Is it possible to have a schema file when using multiple databases in a Rails application?

For various reasons, I have an app that must use two databases in production (corporate data coming from an AWS read-only (redundancy) database, and another normal/writable database for certain lead ...
0
votes
1answer
23 views

Rails to Labview networked connection

I have a Rails server that needs to send a little bit of a data to a LabVIEW system when a record is saved. That shouldn't be too hard in Rails using an after_save hook and quite possibly a redis ...
0
votes
2answers
42 views

How do I deploy my rails app to Heroku using an existing SQL database?

I have an existing MySQL database and would like to build a Rails app on top of it. How do I deploy my app to Heroku but still use my existing database instead of the default PostgreSQL database? ...
0
votes
2answers
29 views

Trying to build rails 3.2 app over existing mysql db

I am trying to figure out how to build a rails app on top of an existing mysql db. I think the best method would just be to create a migration with the same layout as the existing db, but I am not ...
0
votes
1answer
21 views

Rails Unidentified Method Issue: undefined method `outlet_id'

In my database I am trying to get a one to many relationship between outlets and articles. I am getting the following error when that relationship is used: undefined method `outlet_id' for ...
0
votes
0answers
27 views

Rental website development [closed]

this question is not particular to any language. I want to develop a website that allows users to place orders for party rental equipment (tables, chairs, etc). I already designed the database and ...
0
votes
0answers
56 views

New record creation claims success but doesn't record, Rails

So I'm trying to create a record from the LOE model. LOEs are tied to Articles in a many to many relationship, since LOEs are a set of categories. When I try to create a new LOE (through the ...
0
votes
1answer
31 views

How to create and save an model that has a has_many/ belong_to association

I am building an application and i have a models like this class Region < ActiveRecord::Base attr_accessible :region_name has_many :districts, dependent: :destroy end class District < ...
0
votes
1answer
36 views

How to specify a foreign key?

i.e. Post model has a column poster_id and for posters I'm actually using User model. Obviously this is a User has_many Posts relationship, but how to I specify that poster_id is actually an id to ...
-1
votes
1answer
44 views

Have all database queries within a request of a controller go to a different database in Rails

My company is nearing the end of a large migration/upgrade from our Rails 2.x app to Rails 4. Yes, I'm aware that of the time of this writing, Rails 4 is in RC and not final, but our goal is to be ...
1
vote
1answer
47 views

Values fail to save in database for many to many association in Rails.

I have user and role tables which have many to many association. My database has users, roles and role_users tables. Basically I want to save user's roles in role_users table which is basically join ...
0
votes
3answers
31 views

How can I change the a column name in rails 3?

basically I accidentally wrote password_has instead password_hash and I thought by rake db:rollback I can make the appropriate changes and then do rake db:migrate and rake db:reset but seems like the ...
0
votes
1answer
45 views

Rails 4 - Validate Model without a database

I've followed this tutorial and molding it as best I can for Rails 4. http://railscasts.com/episodes/219-active-model?language=en&view=asciicast class Contact include ...
1
vote
1answer
33 views

rails test and development databases are in different schema

I want to make benchmark tests but when I run rake test:benchmark I'm taking this kinds of errors ActiveRecord::StatementInvalid: PG::Error: ERROR: relation "contests" does not exist LINE 5: ...
0
votes
4answers
47 views

How to connect to database from script in /lib dir?

I have a script in lib directory and I need to fetch some data. require 'active_record' Article.each do ... When I try this, I got this error message: file.rb:3:in `<main>': uninitialized ...
0
votes
1answer
28 views

rails database query is resulting activeRecord::Relation

I am using Spree Commerce for developing my E-commerce site. When I write self.where("user_id = ?", user_id)** for accessing database it is showing ActiveRecord::Relation and when I am using ...
0
votes
2answers
43 views

fetching values in drop down list from one table and saving it to another table for many to many association in ruby on rails

I have two models User and Role which have third model user_role. I want to assign some roles to user while creating. A user can have many roles and a role can be assigned to many users. I have ...
0
votes
1answer
39 views

How do I manage changes to my db across git branches?

So, I have an app that I am experimenting with. The current state is good on my develop branch. I want to install spree, but that comes with many migrations and changes to the db. So I made a new ...
0
votes
3answers
59 views

ruby on rails get table row by two column conditions

For instance, I have two tables in database, Users and Microposts. The Users table stores all the users and has two columns, id and name; the Microposts table stores the posts made by the Users and ...
1
vote
1answer
34 views

How to join mutli-role, multi organisation tables in Rails

I'm trying to find a solution to a rails design that isn't all that obvious to me. A friend who is very good with this stuff has given me his take on it, but I wondered if there is a rails pattern - ...
0
votes
1answer
39 views

new to rails, setting up db then running rake db:create/migrate

hi im currently learning rails, and following a tutorial. the instructions were to edit the migration file after i've created the app, then running rake db:migrate, then rake db:create. i've edited ...
0
votes
1answer
27 views

deciding team lead and assigning users to team in ruby on rails

I want to assign a team lead and members(users) to team. I have created "has many and through" association between teams and users tables as one team may have many users and a user can be assigned to ...

1 2 3 4 5 33