Top "Database-migration" questions

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

Laravel: Run migrations on another database

In my app every user has its own database that created when user registered. Connection and database data (database name, …

laravel laravel-4 database-migration multi-tenant
Rails migration does not change schema.rb

I have a rails migration that is not being applied to my schema.rb. The migration should create a table: …

ruby-on-rails ruby-on-rails-4 database-migration rails-migrations
Laravel Fatal Error Class Not Found when migrating

I've run artisan migrate:reset. I've deleted some of my migration files because I didn't need these tables anymore. I …

php laravel-4 database-migration
Laravel running migrations on "app/database/migrations" folder recursively

So my migrations folder looks like this since I have dozens of tables it keeps things organized and clean: migrations/ …

php laravel database-migration
Migrating Oracle Database with expdp and impdp

Does the target database need to be prepared with tablespace and/or user (schema) in order to successfully migrate a …

oracle oracle11g database-migration impdp
Default row order in SELECT query - SQL Server 2008 vs SQL 2012

Our team recently upgraded our databases from SQL Server 2008 to SQL Server 2012. One breaking change we noticed was in the …

sql sql-server sql-server-2008 sql-server-2012 database-migration
Writing Migrations with Foreign Keys Using SequelizeJS

The Background I'm building a project with SequelizeJS, a popular ORM for NodeJS. When designing a schema, there appears to …

node.js database-migration sequelize.js
Schema Migrations Table

In my Rails 4 app I would like to collapse my migration files into one large file (similar to schema.rb) …

ruby-on-rails ruby-on-rails-4 database-migration
Django 1.8 - what's the difference between migrate and makemigrations?

According to the documentation here: https://docs.djangoproject.com/en/1.8/topics/migrations/ it says: migrate, which is responsible for applying …

django database-migration django-south schema-migration
Laravel : Migrations & Seeding for production data

My application needs a pre registered data set to work. So i need to insert them in the database when …

php database laravel laravel-4 database-migration