Migration Archives

Migration in EF Code First

Author - Webner
|
0 Comments
|

Code First Conventions

In code first approach we create the domain classes first rather than creating the database. Initially, we need to create the domain classes having the properties and then we create the database according to the domain classes.

Database Migration – Migration is used to update the Read more…

Database Migration in Laravel

Author - Maniraj Singh
|
0 Comments
|

Database Migration in Laravel

Migrations allow us to easily share the database schema of your website. There are only a few commands to run to create database tables. If, we do it manually there is some chances of getting an error and it’s also time Read more…