Tagged Questions
-2
votes
1answer
59 views
undefined method `confirmable'
I am getting the following error when rake db:migrate is run:
undefined method `confirmable' for #<ActiveRecord::ConnectionAdapters::Table:0x6d448e8>
...
0
votes
1answer
55 views
How to load schema and data for my rails app
How to load schema and data for my production rails app into a different machine.
I would like to converge all migrations done so far into a single migration file and point the new instance to a ...
5
votes
2answers
132 views
Migrating DATA - not just schema, Rails
Consider this.
You have a migration
class ChangeFromPartnerAppliedToAppliedAt < ActiveRecord::Migration
def up
User.all.each do |user|
user.applied_at = user.partner_application_at
...
0
votes
2answers
584 views
Trying to insert into postgresql: getting error
On invocation of
http://localhost:3000/tempbizs
Im having the index method of the tempbiz_controller migrate data from a legacy database (sqlite3) to another postgresql inside my rails app.
It ...
0
votes
2answers
67 views
How to create rows from a running number?
I'm trying write code of running numbers from document numbers, with the following values
Data in mind :
document_types records :
{:document_type_code => 'PR', :running_no => 2, ...}
...
0
votes
2answers
1k views
rake db:migrate fails
I am creating a simple users table and when I ran rake db:migrate it appeared to create_table(:users) Howerver I got the following warnings at the same time. I tried running rake db:migrate again and ...
0
votes
1answer
62 views
Which is the optimal way to add lots of data to an existing database in Rails?
I have a database with a table that consists of 65k+ entries, which is used in my production Rails app, and I want to add some 40k+ more rows from a CSV file I have, ensuring that the data gets into:
...
1
vote
2answers
174 views
Why is db:reset different from running all migrations?
In section Rails Database Migrations of Ruby on Rails Guides, there is one line saying that
The db:reset task will drop the database, recreate it and load the current
schema into it. This is not ...
0
votes
1answer
189 views
Migrating database (SQLite) from one rails application to another
I currently have a system in which one rails 2.3.2 has a database with all of my content data on. I have since created another application which is using rails 3.1 and is very similar but with some ...
4
votes
1answer
280 views
Doing huge data migrations in rails
I am experiencing big time and computing power challenges when doing big data migration (several 100.000 rows). I am developing a service that handles a lot of data in rails. Our models are constantly ...
10
votes
3answers
2k views
How do I move a column (with contents) to another table in a Rails migration?
I need to move some columns from one existing table to another. How do I do it using a rails migration?
class AddPropertyToUser < ActiveRecord::Migration
def self.up
add_column :users, ...
3
votes
2answers
1k views
Rails 3: Migrate data
My Rails 3 app has a User model and a Profile model. A User has_one Profile.
Currently the Profile has attributes first_name and last_name. While I'm not sure why you might want to change them, I ...
1
vote
2answers
191 views
How do all the web frameworks handle schema updates/migration?
I'm curious as to how all the web frameworks handle schema updates and migration - I know Django does not have built-in support but has django-south.
Do any frameworks have similar functionality ...
0
votes
1answer
482 views
rails migration script VS console
so i am trying to migrate some data in a migration script, but the data does not seem to be saving. however, if i copy the code and run it directly in the console, it does save. can anyone help me ...
0
votes
1answer
382 views
How to import db:schema diff into the database in rails?
i know that is should use migrations, just asking. it would be useful/beautiful to be able work on local mysql database adding fields, indexes etc.
and then
schema dump
git push heroku ...
heroku ...
0
votes
4answers
118 views
How do I get data from an old (non-ruby) app to a new (ruby) app?
I have an old CMS I built using Coldfusion. I would like to get the data from the old CMS to the new Ruby on Rails app. It's not a huge set, only about 1300 records. I need some advice/ideas.
The ...
0
votes
1answer
156 views
Simple database migration error in Rails
I am not able to create database columns when i use t.string or t.number.
When i did rake db:migrate i got this
C:\Ruby\joker\chapter3>rake db:migrate
(in C:/Ruby/joker/chapter3)
== ...
0
votes
2answers
319 views
Where should I put a CSV file that I'm using to perform a data migration?
This may well be a duplicate, but I couldn't find anyone asking quite this question.
My understanding* is that if I want to migrate data from an outside source to my Rails app's database, I should do ...
0
votes
1answer
172 views
Should I be updating database information in a migration?
I've been working on a rails project, in which I need to firstly seed the database and then update the data periodically.
The unfortunate problem is that I seem to want to update the same set of data ...
9
votes
6answers
2k views
Is there a Ruby database migration gem, that helps you move content from an old structure to a new structure?
Are there any Ruby gems/libraries that help you migrate from an old DB structure to a new structure? ActiveRecord migrations do a good job keeping track of a new db structure, but I wonder if there's ...
0
votes
1answer
144 views
submit data from one rails application to another
I have two rails applications. I would like to submit data from one application to another but I want it go through the controller logic as it's not just a DB dumb. I tried using directory HTTP call ...
48
votes
12answers
22k views
How (and whether) to populate rails application with initial data
I've got a rails application where users have to log in. Therefore in order for the application to be usable, there must be one initial user in the system for the first person to log in with (they ...
