Answers for "laravel migration price"

PHP
0

laravel migration price

$this->decimal('price', 10, 2);
Posted by: Guest on April-21-2021
5

foreign key laravel migration

$table->foreign('column_name')->references('id')->on('table_name')->onDelete('cascade');
Posted by: Guest on February-05-2021
2

how create migration in laravel

//to create migration file in PHP use the artisan command "make"
php artisan make:migration create_users_table
// migration file must follow the naming convention "operation_tableName_table"
//Migration file to add column naming convention would be "add_tablename_table"
Posted by: Guest on April-25-2020

Browse Popular Code Answers by Language