# Laravel Migration - A Complete Tutorial

Laravel migration is like a version management tool of DATABASE.


![Laravel Migration](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gtufbeukkkt4aq803mqj.png)

Let's understand this better.

After [Installing Laravel](https://dev.to/shanisingh03/how-to-install-laravel-9-25c4), let's understand migration.

## Create a migration and understand the structure

To generate a migration you need to run a command

```php
php artisan make:migration create_contacts_table
```

this will generate a file in `database\migrations` folder.

The file consists of a new class extending the migration class of LARAVEL.

The new class consist of 2 major function `up()` & `down()`.
The `up()` function holds all information about migrating the file.
```php
public function up()
{
    Schema::create('contacts', function (Blueprint $table) 
    {
            $table->id();
            $table->string('name');
            $table->string('mobile_no');
            $table->boolean('status');
            $table->timestamps();
    });
}
```
whereas the `down()` function holds information about reversing the migration action.

```php
public function down()
{
    Schema::dropIfExists('contacts');
}
```

## Run & Rollback The Migration

To run a migration we need to use the command

```php
php artisan migrate
```

For rolling back the latest migration we have a command 

```php
php artisan migrate:rollback
```

when we have to roll back to specific steps we can pass steps in the rollback command like

```php
php artisan migrate:rollback --step=3
```

this will roll back the migration up to 3 steps starting from the latest.

## Adding/Updating Columns in Table

We need to generate a migration file similar to what we have created while creating the migration to perform any task.

the only change will be there in the migration name, always try to write the migration name descriptive which helps LARAVEL to understand the table name in migrations.
For e.g. Updating the column `name` we should run commands like

```php
php artisan make:migration update_name_column_in_contacts_table
```
Read more at [Laravel Doc](https://laravel.com/docs/9.x/migrations#columns)


## Column Modifiers
Column Modifiers are nothing but a predefined function available in LARAVEL Migration by using that you can make any column `nullable`, Set Column `default` and many more.

You can check the available [Laravel Column Modifier](https://laravel.com/docs/9.x/migrations#column-modifiers).


## Add/Rename/Remove Database Indexes

Laravel Migration supports a few types of INDEXES for e.g.

```php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
 
Schema::table('users', function (Blueprint $table) {
    $table->index('email');
});
```

For renaming a index you can use `renameIndex()` for e.g.
```php
$table->renameIndex('email', 'mobile_no');
```

For dropping a index you can use `dropIndex()` for e.g.
```php
$table->dropIndex('email');
```

## Foreign Key Constraints
Laravel also provides support for creating foreign key constraints, which are used to force referential integrity at the database level. 

```php
$table->foreignId('user_id')
      ->constrained('users')
      ->cascadeOnUpdate()
      ->cascadeOnDelete();
```

The Complete Video Tutorial is below in the video.

%[https://youtu.be/EB2qi8o845k]

If you face any issues while implementing, please comment your query.

Thank You for Reading

Reach Out To me.
[Twitter](https://twitter.com/techtoolindia)
[Instagram](https://www.instagram.com/techtoolindia/)
[YouTube](https://www.youtube.com/c/TechToolIndia)

