How to Create And Run A Migration In Laravel?

13 minutes read

To create and run a migration in Laravel, you need to follow these steps:

  1. Setting up the Migration Environment: Laravel provides a built-in migration system that allows you to modify your database schema using code. To start, open your terminal and navigate to the root directory of your Laravel project.
  2. Creating a Migration: Laravel offers a command-line interface (CLI) to generate migrations. Use the following command to create a new migration file: php artisan make:migration create_table_name --create=table_name Replace table_name with the name of the table you want to create or modify.
  3. Modifying the Migration File: Laravel will generate a new migration file in the database/migrations directory. Open the file and locate the up method. Inside this method, you can define the table schema using Laravel's fluent API or raw SQL queries.
  4. Defining Table Columns: Within the up method, you can use Laravel's Schema builder to add columns to your table. For example, to add a string column named name, use the following code: $table->string('name');
  5. Modifying the Table Schema: Laravel's migration system also allows you to modify existing tables. You can add or remove columns, change column types, set constraints, and more. Simply use the available methods in the up method to define the desired changes.
  6. Running the Migration: Once you have defined your table schema, save the migration file and return to your terminal. Use the following command to run the migration and update the database: php artisan migrate
  7. Verifying the Migration: After running the migration, Laravel will execute the SQL queries defined in your migration file, creating or modifying the specified table in the database. You can verify the changes by checking your database directly or using database management tools such as PHPMyAdmin.


That's it! You have successfully created and run a migration in Laravel to modify your database schema. Laravel's migration system provides flexibility and convenience when managing your database structure throughout the development lifecycle.

Best Laravel Books to Read in 2024

1
Laravel: Up & Running

Rating is 5 out of 5

Laravel: Up & Running

2
Laravel: Up and Running: A Framework for Building Modern PHP Apps

Rating is 4.9 out of 5

Laravel: Up and Running: A Framework for Building Modern PHP Apps

3
PHP & MySQL: Server-side Web Development

Rating is 4.8 out of 5

PHP & MySQL: Server-side Web Development

4
Practical Laravel: Develop clean MVC web applications

Rating is 4.7 out of 5

Practical Laravel: Develop clean MVC web applications

5
Laravel: Up & Running: A Framework for Building Modern PHP Apps

Rating is 4.6 out of 5

Laravel: Up & Running: A Framework for Building Modern PHP Apps

6
Domain-Driven Laravel: Learn to Implement Domain-Driven Design Using Laravel

Rating is 4.5 out of 5

Domain-Driven Laravel: Learn to Implement Domain-Driven Design Using Laravel


What is the purpose of the foreign() method in Laravel migration?

The foreign() method in Laravel migration is used to define a foreign key constraint. It is used to establish a relationship between two database tables, where the current table is referring to a column in another table.


The foreign() method takes two arguments: the name of the column that will have the foreign key constraint, and the name of the foreign key constraint itself. It is typically used in combination with the references() method to specify the column being referenced in the foreign table.


By using the foreign() method, Laravel generates the appropriate SQL syntax to create the foreign key constraint in the database schema when the migration is executed. This helps in maintaining data integrity by ensuring that the referenced column in the foreign table must exist before any changes are made in the current table.


How to create composite keys in Laravel migration?

To create composite keys in Laravel migration, you can use the primary method on the schema builder instance within the up method of your migration file. Here's an example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateCompositeKeysTable extends Migration
{
    public function up()
    {
        Schema::create('composite_keys', function (Blueprint $table) {
            // Columns for the composite keys
            $table->unsignedBigInteger('column1');
            $table->unsignedBigInteger('column2');
            // Other columns
            $table->string('name');

            // Define the composite keys
            $table->primary(['column1', 'column2']);
        });
    }

    public function down()
    {
        Schema::dropIfExists('composite_keys');
    }
}


In the example above, the composite_keys table has two columns (column1 and column2) that make up the composite primary key. You can add additional columns as per your requirements.


What is the syntax to drop a column using Laravel migration?

To drop a column using Laravel migration, you can use the dropColumn method. The syntax to drop a column is as follows:

1
2
3
Schema::table('table_name', function (Blueprint $table) {
    $table->dropColumn('column_name');
});


Replace table_name with the name of the table from which you want to drop the column, and column_name with the name of the column you want to drop.


Remember to run the migration command after writing the migration file:

1
php artisan migrate


Best Laravel Cloud Hosting Providers of 2024

1
DigitalOcean

Rating is 5 out of 5

DigitalOcean

2
AWS

Rating is 4.9 out of 5

AWS

3
Vultr

Rating is 4.8 out of 5

Vultr

4
Cloudways

Rating is 4.7 out of 5

Cloudways


How to create an index on a column in Laravel migration?

To create an index on a column in Laravel migration, you can use the index() method provided by the Schema facade. Here's how you can do it:

  1. Open the migration file you want to add the index to, located in the database/migrations directory.
  2. Locate the up() method of the migration file.
  3. Within the up() method, use the table() method provided by the Schema facade to create the table if it doesn't exist. For example:
1
2
3
4
5
6
7
8
9
public function up()
{
    Schema::create('your_table_name', function (Blueprint $table) {
        // Column definitions...

        // Add index on a column
        $table->index('your_column_name');
    });
}


Replace 'your_table_name' with the name of your table, and 'your_column_name' with the name of the column you want to create an index on.

  1. Save the migration file.
  2. Run the migration using the php artisan migrate command to create the index on the specified column.


After running the migration, Laravel will create an index on the specified column in the database table.


What is the syntax to add a unique constraint to a column in Laravel migration?

To add a unique constraint to a column in Laravel migration, you can use the unique method. The syntax is as follows:

1
$table->string('column_name')->unique();


For example, if you have a migration file and you want to add a unique constraint to the email column of a users table, you can write the following code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddUniqueConstraintToUsersEmail extends Migration
{
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->string('email')->unique()->change();
        });
    }

    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->dropUnique(['email']);
        });
    }
}


In the above example, the unique() method is called after defining the email column to add a unique constraint to it. The change() method is then called to apply the changes to the table structure.


Additionally, in the down method, the dropUnique method is called to drop the unique constraint from the email column during the rollback process.


How to run specific migrations in Laravel?

To run specific migrations in Laravel, you can use the migrate:status and migrate:up commands with the --path or --group options.

  1. First, use the migrate:status command to list all the available migrations along with their status:
1
php artisan migrate:status


This will display a table with the migration files, their status, and the batch number assigned to each migration.

  1. Identify the migrations you want to run by their status or batch number.
  • If you want to run a specific migration file, note its filename.
  • If you want to run all migrations within a specific directory, note the path of the directory.
  • If you want to run multiple migrations within a batch, note the batch number assigned to those migrations.
  1. Use the migrate:up command to run the migrations you identified:
  • To run a specific migration file, use the --path option followed by the path to the migration file. For example:
1
php artisan migrate:up --path=database/migrations/2022_01_01_000000_create_example_table.php


  • To run all migrations within a specific directory, use the --path option followed by the path to the directory. For example:
1
php artisan migrate:up --path=database/migrations/folder_name


  • To run multiple migrations within a batch, use the --group option followed by the batch number. For example:
1
php artisan migrate:up --group=5


Remember to replace the paths and batch number with your own values.


Running the migrate:up command with the specified paths or groups will execute the migrations and update the database accordingly.


What is the rollback functionality in Laravel migration?

The rollback functionality in Laravel migration allows you to cancel the latest set of migration tasks that have been executed. It can be considered as the opposite of the migration functionality in Laravel.


When you run a rollback command, the migration system will undo the last batch of migrations that were applied to the database. This means that the migration system will execute the down method of the migrations in reverse order from the most recent one to the oldest one.


Rollbacks are useful when you need to reverse any changes made by previous migrations, such as dropping a table, removing a column, or reverting any database modifications. By rolling back the migrations, you can easily undo these changes and bring your database to a previous state.

Facebook Twitter LinkedIn Telegram Whatsapp Pocket

Related Posts:

To create a migration in Laravel, you can follow the steps below:Open your command-line interface and navigate to your Laravel project directory. Type the following command to create a new migration file: php artisan make:migration create_table_name --create=t...
Performing CRUD operations in Laravel involves creating, reading, updating, and deleting data in a database using Laravel&#39;s built-in functionalities. Here is a brief explanation of how to perform each operation:Create (C): To create new data, you need to f...
To use flash messages with HTML tags in Laravel, you can follow these steps:Install Laravel: Make sure you have Laravel installed on your system. You can use Composer to install it by running the command composer global require laravel/installer. Create a new ...