Answers for "how to make text in laravel migration"

PHP
0

long text in laravel migration

Schema::create('posts', function ($table) {
    $table->increments('id');
    $table->integer('user_id');
    // ...
    $table->longText('description');
    // ...
}
Posted by: Guest on September-04-2021
0

laravel what is migrations

php artisan make: migración create_articles_table --create = artículos
Posted by: Guest on September-25-2021

Code answers related to "how to make text in laravel migration"

Browse Popular Code Answers by Language