create project table with model and migration

Created at 23-Jul-2021 , By samar

create project table with model and migration

In this session, we will try our hand at solving the "create project table with model and migration".

You can use the artisan command to create a model with a migration file in Laravel to create the project table structure.
  • Create project table with model and migration

    // Create project model with migration 
    php artisan make:model Project --migration
    
    // Add columns to project migration file under - database\migrations\<2021_04_21_125826>_create_projects_table.php
    Schema::create('projects', function (Blueprint $table) {
        $table->id();
        $table->string('name');
        $table->timestamps();
    });
    
    // Run migrate command to create table structure
    php artisan migrate
    

    First you have to run artisan command with php artisan make:model Project --migration. This command will create a model and migration for your table structure. After that you can add columns to the migration file and run the php artisan migrate command.

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.