An action of moving between major version of any framework, product or language, or, just as commonly, alteration to the data schema of an application. This might involve modifying existing data to make it work with the new version.

learn more… | top users | synonyms (1)

293
votes
5answers
74k views

How can I rename a database column in a Rails migration?

I wrongly named a column hased_password instead of hashed_password. How can I use a migration to rename this column?
115
votes
3answers
27k views

How do you write a migration to rename an ActiveRecord model and its table in Rails?

I'm terrible at naming and realize that there are a better set of names for my models in my Rails app. Is there a way to use a migration to rename a model and its table?
108
votes
7answers
19k views

How to migrate/convert from SVN to Mercurial (hg) on windows

I'm looking for a tool to migrate a couple of SVN repositories to Mercurial, with history, labels and so on. I'm using TortoiseHg (Windows x32), so ConvertExtensions are discarded. There's some info ...
89
votes
3answers
51k views

Rails migration for change column

We have script/generate migration add_fieldname_to_tablename fieldname:datatype syntax for adding new columns to a model. On the same line, do we have a script/generate for changing the datatype of a ...
87
votes
3answers
21k views

Rails migrations: Undo default setting for a column

Hi Stack Overflow Community! I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example: def self.up add_column :column_name, :bought_at, ...
87
votes
20answers
17k views

Mechanisms for tracking DB schema changes [closed]

What are the best methods for tracking and/or automating DB schema changes? Our team uses Subversion for version control and we've been able to automate some of our tasks this way (pushing builds up ...
84
votes
3answers
13k views

Backwards migration with Django South

Ok, so this seems like a really silly thing to ask, and I'm sure I'm missing something somewhere. How do you perform a backwards migration using South on Django? So I've tweaked my models, created a ...
76
votes
16answers
52k views

Quick easy way to migrate SQLite3 to MySQL?

Anyone know a quick easy way to migrate a SQLite3 database to MySQL?
76
votes
11answers
14k views

Database Migration library for .NET

There are a number of migration libraries for .NET. Which one do you prefer and why? For those of you who haven't heard of migrations. This is something that Ruby on Rails made popular. It is a ...
65
votes
4answers
19k views

Run a single migration file

Is there an easy way to run a single migration? I don't want to migrate to a certain version I just want to run a specific one.
64
votes
3answers
24k views

Version of SQLite used in Android?

What is the version of SQLite used in Android? Reason: Im wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy ...
57
votes
3answers
31k views

Migrating from JSF 1.2 to JSF 2.0

I am working with a rather large app written in JSF 1.2. JSF 1.2 is around 6 years old now. I need to upgrade to JSF 2.0. How painful will this be? I noticed that some attributes in custom tags have ...
56
votes
8answers
7k views

Migrations for Java

I use both ruby on rails and Java. I really enjoy using migrations when I am working on a rails project. so I am wondering is there a migrations like tool for Java? If there is no such tool is it a ...
54
votes
5answers
27k views

Rails 3 migrations: Adding reference column?

If I create a new rails 3 migration with (for example) rails g migration tester title:tester user:references , everything works fine...however if I add a column with something along the lines of: ...
52
votes
3answers
5k views

How do I migrate a model out of one django app and into a new one?

I have a django app with four models in it. I realize now that one of these models should be in a separate app. I do have south installed for migrations, but I don't think this is something it can ...
45
votes
9answers
1k views

Strategy for developing namespaced and non-namespaced versions of same PHP code

I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even ...
44
votes
6answers
34k views

Rails DB Migration - How To Drop a Table?

I added a table that I thought I was going to need, but now no longer plan on using it. How should I remove that table? I've already ran migrations, so the table is in my database. I figure rails ...
44
votes
1answer
5k views

How to handle too long index names in a Rails migration with MySQL?

I am trying to add an unique index that gets created from the foreign keys of 4 associated tables (users, universities, subject_names, subject_types). add_index :studies, ["user_id", ...
43
votes
3answers
20k views

Rails migration for has_and_belongs_to_many join table

How do I do a script/generate migration to create a join table for a has_and_belongs_to_many relationship? The application runs on Rails 2.3.2, but I also have Rails 3.0.3 installed.
43
votes
3answers
19k views

Switching from MySQL to Cassandra - Pros/Cons?

For a bit of background - this question deals with a project running on a single small EC2 instance, and is about to migrate to a medium one. The main components are Django, MySQL and a large number ...
41
votes
7answers
8k views

How are you planning on handling the migration to Python 3?

I'm sure this is a subject that's on most python developers' minds considering that Python 3 is coming out soon. Some questions to get us going in the right direction: Will you have a python 2 and ...
40
votes
10answers
27k views

Using Rails, how can I set my primary key to not be an integer-typed column?

I'm using Rails migrations to manage a database schema, and I'm creating a simple table where I'd like to use a non-integer value as the primary key (in particular, a string). To abstract away from my ...
35
votes
5answers
15k views

How come my South migrations doesn't work for Django?

First, I create my database. create database mydb; I add "south" to installed Apps. Then, I go to this tutorial: http://south.aeracode.org/docs/tutorial/part1.html The tutorial tells me to do ...
35
votes
2answers
14k views

Rails 3 has_and_belongs_to_many migration

I have two models restaurant and user that I want to perform a has_and_belongs_to_many relationship. I have already gone into the model files and added the has_and_belongs_to_many :restaurants and ...
34
votes
4answers
15k views

How To: Delete Migration Files in Rails 3

I would like to remove/delete a migration file. How would I go about doing that? I now there are similar questions on here but as an update, is there a better way than doing script/destroy? Also, ...
33
votes
5answers
9k views

rake db:schema:load vs. migrations

Very simple question here - if migrations can get slow and cumbersome as an app gets more complex and if we have the much cleaner rake db:schema:load to call instead, why do migrations exist at all? ...
32
votes
1answer
1k views

Entity Framework migrations stopped detecting the POCO updates

I'm using Entity Framework and Entity Framework migrations to implement solution using code-first and automatic migrations. It used to work great but suddenly it stopped detecting the updates I make ...
29
votes
3answers
15k views

ROR migration change a column type from Date to DateTime

I need to change my column type from date to datetime for an app I am making. How can I do this? I don't care about the data is its still being developed. I am using mySQL. TIA
29
votes
9answers
17k views

Dependency graph of Visual Studio projects

I'm currently migrating a big solution (~70 projects) from VS 2005 + .NET 2.0 to VS 2008 + .NET 3.5. Currently I have VS 2008 + .NET 2.0. The problem is that I need to move projects one by one to new ...
29
votes
3answers
8k views

How do I force ActiveRecord to reload a class?

I'm creating a bunch of migrations, some of which are standard "create table" or "modify table" migrations, and some of which modify data. I'm using my actual ActiveRecord models to modify the data, ...
27
votes
10answers
13k views

how (replace|create) an enum field on rails 2.0 migrations?

I would like to create an enum field at sone migration I'm doing, I tried searching in google but I can't find the way to do it in the migration the only thing I found was t.column :status, :enum, ...
27
votes
6answers
2k views

Migrating Java to Scala

What are the most important points to be aware of, and the workarounds, when gradually migrating an existing Java codebase to Scala? With a (potentially very long) intermediate phase where both ...
27
votes
9answers
3k views

Can you recommend a database schema migration tool that is not tied to a particular framework or ORM?

I've used South migrations in the past, but am now looking for a database migration tool that is not tied to a particular framework or Object Relational Mapper (South is for Django). I need it simply ...
23
votes
1answer
5k views

Rails 3 Migration with longtext

I am needing to change a column type from text to longtext in my Rails script, but can't find anything on how to do this. Has anyone ran across this? Thanks! Dennis
23
votes
9answers
54k views

How to import a SQL Server .bak file into MySQL?

The title is self explanatory. Is there a way of directly doing such kind of importing?
23
votes
2answers
7k views

How to change a nullable column to not nullable in a Rails migration?

I created a date column in a previous migration and set it to be nullable. Now I want to change it to be not nullable. How do I go about doing this assuming there are null rows in that database? I'm ...
22
votes
4answers
6k views

Using south to refactor a Django model with inheritence

I was wondering if the following migration is possible with Django south and still retain data. Before: I currently have two apps, one called tv, one called movies, each with a VideoFile model ...
21
votes
1answer
9k views

Adding :default => true to boolean in existing Rails column

I've seen a few questions (namely this one) here on SO about adding a default boolean value to an existing column. So I tried the change_column suggestion but I mustn't be doing it right. I tried: $ ...
21
votes
3answers
12k views

Migrating from MySQL to PostgreSQL [closed]

We are currently using MySQL for a product we are building, and are keen to move to PostgreSQL as soon as possible, primarily for licensing reasons. Has anyone else done such a move? Our database is ...
20
votes
4answers
2k views

Best way to really grok Java-ME for a C# guy [closed]

I've recently started developing applications for the Blackberry. Consequently, I've had to jump to Java-ME and learn that and its associated tools. The syntax is easy, but I keep having issues with ...
20
votes
6answers
3k views

Rails: Is it bad to have an irreversible migration?

When is it acceptable to raise an ActiveRecord::IrreversibleMigration exception in the self.down method of a migration? When should you take the effort to actually implement the reverse of the ...
20
votes
5answers
6k views

Best way to automagically migrate tests from JUnit 3 to JUnit 4?

I have a bunch of JUnit 3 classes which extend TestCase and would like to automatically migrate them to be JUnit4 tests with annotations such as @Before, @After, @Test, etc. Any tool out there to do ...
20
votes
9answers
26k views

Transfer Mysql database to another computer

I have a mysql database filled up and running on a windows computer, is there any tool to transfer the database to another computer (running ubuntu)? Else I'll just write a script to take all the ...
20
votes
5answers
6k views

In a Rails Migration (MySQL), can you specify what position a new column should be?

If I'm adding a column via MySQL, I can specify where in the table that column will be using the AFTER modifier. But if I do the add_column via a Rails migration, the column will be created at the end ...
20
votes
4answers
4k views

Add a default value to a column through a migration

How do I add a default value to a column that already exists through a migration? All the documentation I can find shows you how to do it if the column doesn't already exist but in this case it ...
20
votes
2answers
8k views

Convert SQLITE SQL dump file to POSTGRESQL

I've been doing development using SQLITE database with production in POSTGRESQL. I just updated my local database with a huge amount of data and need to transfer a specific table to the production ...
19
votes
1answer
10k views

rails run specific migration [duplicate]

Possible Duplicate: Run a single migration file I've deleted a table in the database, call it X. db:migrate no longer works. I have a migration file called CreateX. Is there a way to run ...
19
votes
5answers
11k views

Tool to Migrate from SVN to TFS

Can anyone suggest a tool for migrating from SVN to TFS? Preferably this would be Open Source.
19
votes
1answer
5k views

NHibernate SchemaUpdate

From personal experience, as well as everything I've read, NHibernate's SchemaUpdate doesn't support removing columns and tables. I'd like to use SchemaUpdate to generate migration DDL, but not ...
19
votes
7answers
5k views

MongoMapper and migrations

I'm building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model: class SomeModel include MongoMapper::Document ...

1 2 3 4 5 58