Laravel 8 tutorial - Important Migration command for interview

preview_player
Показать описание
In this laravel 8 and Laravel 9 video tutorial, we learn what is migration and what are important commands for migration in Laravel tutorial a simple way. This video is made by anil Sidhu in the English language.

steps of video
What is Migration
Make Table with Migration
Write code for Column Field
Migrate Database
Interview Question
Laravel tutorial for fresher and beginners
Laravel 9

php artisan make:migration create_test5_table
php artisan migrate
php artisan migrate:reset
php artisan migrate:rollback --step 3
php artisan migrate:refresh

Laravel 9 tutorial playlist
Рекомендации по теме
Комментарии
Автор

Please support me by subscribe, like and comment :) thank you

codestepbystep
Автор

i am getting nothing to migrate what should i do

CHUKWUEBUKANWORAH-fjxv
Автор

Sir, please do react tutorial in english

madhuraj
Автор

Sir, could you please answer the interview question?

reemapatel
Автор

Please make a series of react redux with full authentication :)

bimalpariyar
Автор

How to rollback last nth migration? For example i had 10 migration. I want to rollback 8th migration

marufmazumder
Автор

to install two table with just one migration command.
public function up()
{
//first table
Schema::create('test1', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
//second table
Schema::create('test8', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
then run the below command to install both table simultaneously.
php artisan migrate

abidali-wquu
Автор

If i want edit migration, file for example add column for my table, how can i do that plz ??? Thank you

redouanekhaldi
Автор

to migrate 2 tables at a time make 2 migrations and just run migrate command 😊😊

harshilgajjar
Автор

I think its not possible
Only single migration

Respect-eeur
Автор

Very Good Tutorials but problem is

just writing a comment just for just comment sake just to do this. just to give some just information. just ignore this. Because just this is a just comment. just just just just just

TheSumaravi