Top "Database-migration" questions

database-migration is the process of transferring data between storage types, formats, or computer systems.

EF Migrations: Rollback last applied migration?

This looks like a really common task, but I can't find an easy way to do it. I want to …

entity-framework entity-framework-4 database-migration entity-framework-migrations
How to export SQL Server database to MySQL?

I'm trying to convert from a SQL Server database backup file (.bak) to MySQL. This question and answers have been …

mysql sql-server database-migration
Access denied for user 'homestead'@'localhost' (using password: YES)

I'm on a Mac OS Yosemite using Laravel 5.0. While in my local environment, I run php artisan migrate I keep …

php laravel laravel-5 database-migration homestead
Rollback one specific migration in Laravel

I want to rollback only : Rolled back: 2015_05_15_195423_alter_table_web_directories I run php artisan migrate:rollback, 3 of my migration …

laravel laravel-4 laravel-5 database-migration
Reset Entity-Framework Migrations

I've mucked up my migrations, I used IgnoreChanges on the initial migration, but now I want to delete all my …

entity-framework database-migration entity-framework-migrations
How do I move a redis database from one server to another?

I currently have a live redis server running on a cloud instance and I want to migrate this redis server …

database redis data-migration database-migration
How do I copy SQL Azure database to my local development server?

Does anyone know how I can copy a SQL Azure database to my development machine? I'd like to stop paying …

sql-server azure azure-sql-database database-migration
How do I enable EF migrations for multiple contexts to separate databases?

How do I enable Entity Framework 5 (version 5.0.0) migrations for multiple DB contexts in the same project, where each context corresponds …

.net entity-framework entity-framework-5 database-migration
Dropping column with foreign key Laravel error: General error: 1025 Error on rename

I've created a table using migration like this: public function up() { Schema::create('despatch_discrepancies', function($table) { $table->increments(…

php laravel laravel-4 database-migration
How to migrate SQL Server database to MySQL?

I have a SQL Server database with lots of data and an empty MySQL database. Now I want to copy …

mysql sql-server database-migration