ItSolutionStuff.com

Laravel Migration Add Date Column Example

By Hardik Savani β€’ November 5, 2023
Laravel

Hey Developer,

In this tutorial, you will learn laravel migration add date column. I would like to show you how to add date datatype in laravel migration. step by step explain laravel migration date field. let’s discuss about laravel migration date column.

Laravel migration provides date() to add date data type in mysql table. in this example, we will create pages table with publish_date field with date datatype. so, let's see the simple migration code:

Example:

Here, we will create pages table with add date to data type.

Create new migration using following command:

php artisan make:migration create_pages_table

Now, You can update it as like the bellow:

database/migrations/migration_name.php

<?php

use Illuminate\Database\Migrations\Migration;

use Illuminate\Database\Schema\Blueprint;

use Illuminate\Support\Facades\Schema;

return new class extends Migration

{

/**

* Run the migrations.

*/

public function up(): void

{

Schema::create('pages', function (Blueprint $table) {

$table->id();

$table->string('title');

$table->text('body');

$table->date('publish_date')->nullable();

$table->timestamps();

});

}

/**

* Reverse the migrations.

*/

public function down(): void

{

Schema::dropIfExists('pages');

}

};

Now, you are ready to run migration command:

php artisan migrate

You will see the layout as like the below:

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

How to Add Blob Data Type using Laravel Migration?

Read Now β†’
β˜…

Laravel Migration Remove Auto Increment Example

Read Now β†’
β˜…

How to Drop Primary Key in Laravel Migration?

Read Now β†’
β˜…

How to Add Primary Key in Laravel Migration?

Read Now β†’
β˜…

How to Drop Index in Laravel Migration?

Read Now β†’
β˜…

How to Add Unique Constraint in Laravel Migration?

Read Now β†’
β˜…

Laravel Migration Change Datatype Int to Bigint Example

Read Now β†’
β˜…

Laravel Migration Add Column After Column Example

Read Now β†’
β˜…

How to Update Enum Value in Laravel Migration?

Read Now β†’
β˜…

How to add Default Value of Column in Laravel Migration?

Read Now β†’
β˜…

How to Add Foreign Key in Laravel Migration?

Read Now β†’
β˜…

Laravel Migration - How to Add New Column in Existing Table ?

Read Now β†’
β˜…

How to Change Table Name using Laravel Migration?

Read Now β†’
β˜…

How to Remove Column from Table in Laravel Migration?

Read Now β†’