Tagged Questions
0
votes
1answer
27 views
Rails Migrations: How to split one table into two tables?
I have a database with the following schema:
[ Region ] 1 --- * [ District ] 1 --- * [ Location ]
I would like to split the middle table into two tables as follows:
[ Region ] 1 --- * [ District ] ...
2
votes
4answers
39 views
Ruby on Rails: Long list of migration files, common?
Is having a long list of migration files often common when building a web application? I seem to be adding up a long list of migration files because I keep forgetting or keep thinking of adding an ...
0
votes
1answer
31 views
Ruby on Rails: User model association applications and migrations
I'm still fairly new to Ruby on Rails and I'm working with associations, such as if a table has_many :facts, or belongs_to :list,
do we deal with users as well? for Users model:
has_many :lists
...
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
4answers
21 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
3answers
35 views
Do I have to explicitly generate a migration for the foreign key in a rails application?
Suppose I have Model Person and Model Book. One person has many books. I have a has_many books in Person's model and belongs_to in Book's model. When I generate those scaffold, there're no foreign ...
0
votes
4answers
48 views
Ruby on Rails: adding columns to existing database
I'm getting an error:
SQLite3::SQLException: no such column: ideas.list_id:
SELECT "ideas".* FROM "ideas"
WHERE "ideas"."list_id" = 2
But I added
t.integer :list_id
to my db migration file:
...
0
votes
1answer
23 views
Adding foreign key to a rails model
I'm quite new to rails and have been trying to work this out all night with no luck.
I have created 3 models: users, businesses, and business_hours. I have also added the associations (business_hours ...
1
vote
2answers
44 views
Rake db:migrate - how do I undo all migrations and redo them
Is there a quick rake db:rollback command for all of the migrations?
0
votes
2answers
14 views
Replacing values of a column in a migration
I have a column called "p_type" which is string, since I thought to have types A, B and C as strings
now I realize that it is better to have that as a bitmask so I can have A and C together.
If I ...
1
vote
2answers
43 views
Rake db:migrate - how do I know if there is an unrun migration
I am working on an existing rails application, making changes and updating it.
How do I check if there are unrun rake db:migrate in it? Is there a direct command?
1
vote
3answers
44 views
What is the best way to resolve Rails orphaned migrations?
I have been switching between branches in a project and each of them have different migrations... This is the scenario:
$ rake db:migrate:status
Status Migration ID Migration Name
...
0
votes
1answer
43 views
I can't generate a model either migration in rails
I have a rails project and i want to add a new table and also make changes in one table which is already in the project.
From the terminal and inside the folder of the existing rails project I write ...
3
votes
1answer
67 views
adding a new has_many relationship to an existing model
I would like to add a has_many relationship to two existing tables/models in my app & I'm not too sure how to di it?
When I did this before with a new model the rails generate command handled ...
1
vote
1answer
38 views
Sign In/Up Form in different migrations
I have a devise users table with a fully functioning sign in/up form.
What I was wondering was how to have that users form appear on a different table.
For example
users/sign_in works perfectly
...
0
votes
0answers
199 views
NameError: undefined local variable or method `string' for main:Object in Rails migration
I am trying to add a new column to my rails model. I did similar thing before and everything worked perfectly every time. But, this time I am getting an weird error.
When I try to add source_code ...
1
vote
2answers
57 views
Understanding rails migration statement (:null => false)
I am trying to understand the following statement, it is from a rails migration file:
x.datetime "new", :null => false
x.datetime "update", :null => false
I understand the the first part ...
0
votes
4answers
114 views
Change default_timezone of active record
In rails, I have the below config for activerecord at first.
config.active_record.default_timezone = :utc
Now, I want to use the local timezone, so I changed it to:
...
0
votes
1answer
53 views
Rails 3 Migration and application.rb
I inherited a Rails project and was asked to update it so I am migrating the Rails 2.2.2 project to Rails 3.2.
I went through a few migration tutorials and ran the rails upgrade script and it loads ...
1
vote
2answers
72 views
How to write SQL in a migration in Rails
I have the following SQL which I need to do
create table cars_users2 as select distinct * from cars_users;
drop table cars_users;
alter table cars_users2 rename to cars_users;
since I cannot use ...
0
votes
3answers
34 views
How to update reference column in Ruby
I have a migration that I want to make with a reference in my table. I create the reference using this:
create_table :user_events do |t|
t.references :user, :null => false
end
And in my ...
0
votes
1answer
115 views
Deleted migrations and Heroku
A few days ago I created a migration for rails to add Paperclip avatars, but ended up going a different direction. Being new to Rails, I didn't know how bad of an idea it was to delete the migration ...
0
votes
1answer
54 views
How do i make rails 3 model type cast according to migration?
The problem that i have is when i run my migrations the updates is applied to the database, but rails does not do the same.
To be more accurate. I have a address model with a house number. Recetly i ...
1
vote
1answer
81 views
Importing (populating) data from an old database dump to a new database - Rails
I have a php app that I am porting to rails. I created the database schema in my rails app, and want to import some production data into the the sqlite db for testing - some users, badges table, etc. ...
0
votes
1answer
69 views
rails how to create record with id
I'm using rails v3.0.9 and Mysql database.
I'm migrating the tables with existing data.
I've users table and all other tables contains the user_id column and now i need seperate the users into two ...
1
vote
2answers
29 views
how to set up this association and model migration?
I have users, posts, and comments. Posts belong to users. Users have many posts.
Now where I'm confused is that users are supposed to be able to comment on others' posts.
How do I set up this ...
1
vote
1answer
49 views
How to write migration which delete duplicated items?
I have following output:
> group.items
=> [<Item id: 1, user_id: 7, group_id: 1>,<Item id: 2, user_id: 7, group_id: 1>,
<Item id: 1, user_id: 2, group_id: 1>,<Item id: ...
0
votes
0answers
59 views
Is it possible to add default value to existing column?
I did scaffold without adding default value.
Is there any possible way to add only default value to existing column?
If so, how can I write in migration file?
The value that I want to add default ...
0
votes
2answers
111 views
Add default value to a migration of another column
Since the updated_at column looks at all attributes when updated I want to add a new_updated_at which I will decide when it updates.
The default value on insertion via migration I want it to be the ...
1
vote
1answer
740 views
PGError: Error: column of relation does not exist - Rails / Heroku
I'm trying to change the value of a column "isGroup" to the value "public".
I created a migration:
Post.connection.execute("update Posts set isgroup='public'")
However, I get the following ...
0
votes
0answers
95 views
problems with router port 5000 when I upload a ruby 193 app on heroku
I've ruby 193 app and I've installed Heroku toolbel to load then my application on it, which automatically installs ruby 192. I've alse pik with both versions.
C:\Prove>pik list
187: ruby 1.8.7 ...
0
votes
1answer
66 views
creating a migration for this relationship
I completly forgot, over night, how to create the migration for this type of relationship:
I have a project table and a user table and each user has their own projects that they create how ever users ...
0
votes
1answer
65 views
Create a primary key for a table without one in migration
I've created table
create_table :friendships , :force => true, :id => false do |t|
t.integer :person_id
t.integer :friend_id
end
Now i need to create id for that table. how can i do ...
0
votes
2answers
108 views
Ruby on Rails with Postgis
I want to create a table in my postgres db, with one column which is a multipolgyon. How do i do that?
What i do fails because of this:
undefined method multipolygon for ...
7
votes
8answers
2k views
Rails creating migration to add columns to table causes error when running rake db:migrate
I have a model created called "users" and i created a new migration to add some columns to the users table. Now when i run rake db:migrate, I get the error below b/c it's trying to create the users ...
1
vote
1answer
103 views
Why is the user_id not automatically added upon creation of a comment?
I have a field that creates a comment (named pcomment). I am trying to get it to automatically add the user_id to the pcomment in the pcomment table like it adds the purchase_id automatically. I am ...
2
votes
2answers
96 views
Rails creating a table without migration
I have a rails app that has a particular table where the data and even the structure is dynamically generated outside of rails and ruby. This is by design, it is a special table where the structure is ...
0
votes
0answers
29 views
Organizing rails migrations using classes
I need to do a bunch of migrations with very similar tasks. I thought of making a top level class with something like this
class MigrationHelper < ActiveRecord::Migration
def up
# lots of ...
1
vote
1answer
39 views
rails: any way to run ONLY the NEXT migration (of several new migrations), do manual stuff, then run the rest of the migrations?
My Rails 3.0 app has three new migrations pending, X and Y and Z, but some manual intervention is required after running X and before running Y and Z.
Is there a way to tell rake "run anything ...
1
vote
4answers
338 views
404 error on heroku db:push
I am getting a 404 error when trying to push my database to Heroku via Taps
(1.9.2@[app_name]_db) heroku db:push --app [app_name]
Loaded Taps v0.3.24
Auto-detected local database: ...
1
vote
2answers
94 views
Incorrect Pluralizing of Model in Rails
I looked around on Stack Overflow and Agile Development with Rails but couldn't find anything that answered all the parts of this I need.
I just generated a Cow model in rails. Apparently, Rails ...
0
votes
1answer
80 views
How to save data directly from the migration file in ruby on rails
In my ROR project, I came across an issue. Previous developer of the project has save an array of data into a single column for a particular field. But now I have to get those data and save it to ...
0
votes
0answers
70 views
Migrating carrierwave fog uploads from AWS to RackSpace
I've currently got carrierwave/fog uploads to AWS S3 storage. What I'd like to do is reupload all of the active uploads to RackSpace. Is there a way to make this migration happen?
Ruby: 1.9.3
Rails: ...
0
votes
2answers
238 views
Rais 3 has_one / belongs_to relationship with model in subdirectory
I'm trying to create a simple relationship but with a model in a subdirectory under Rails 3.2
I have a User class and each user has an email subscription.. Because There will be other types of ...
1
vote
2answers
246 views
Rails migration: establish_connection creates table in wrong database
I want to create a new table in a database other than the one defined in my database.yml file.
Here's my database.yml file:
development: ...
0
votes
1answer
181 views
Migrating Rails 2.3.5 to Rails 3.x.x Steps With PitFalls and Traps
Update: The Question is Still Open, any reviews, comments are always welcome
As I already know lot QA's in stackoverflow regarding my topic, but most of them are closed and not properly answered.
...
1
vote
2answers
52 views
Rails script not updating all mongoid documents
Currently, I have a User object that has a field realname. I'm trying to split on the space and convert it to two fields, first_name and last_name. Below is the script that I wrote to do this:
...
0
votes
2answers
99 views
Rails 3 - Issue with storing floats
I am creating a 3D map and I have the x, y, and z values for each point, the current database I am get the data from has the values like so:
x = -8.851079259998058e16
y = 4.236944396687888e16
z = ...
0
votes
1answer
70 views
Rails Migration - Integer Column only contains values of '1'
In a rails project, we are attempting to migrate data from one table to another. When we create the original table, we use (snippet):
create_table :my_original_table do |t|
#OTHER COLUMNS HERE
...
0
votes
0answers
51 views
Data Association / Migrations
Im doing a site in rails 3.0 that serves will compute for the total expenses for each crew but having a hard doing data association. I have 7 tables (crew, peme, training, visa, endorsement, seminar ...




