Answers for "$table->increments('id')"

PHP
1

laravel add auto increment

Schema::table('item_tag', function (Blueprint $table) {
    $table->increments('id')->first();
});
Posted by: Guest on May-15-2020
0

laravel field types from database field type

// in laravel if error of missing pdomysql driver issue the command
// composer require doctrine/dbal
DB::connection()->getDoctrineColumn($table_name, $field_name)->getType()->getName()
Posted by: Guest on October-31-2020

Browse Popular Code Answers by Language