Database: Migrations
Refresher on the concept of migrations in Laravel.
Introduction
Migrations help define and modify database table structure easily instead of doing the same operations with a database manager such as PHPMyAdmin or SequelPro. It also allows sharing the application’s database schema definition without exposing the database records.
Generating migrations
The make:migration
artisan command generates a migration file and places it in the ...
Create a free account to access the full course.
By signing up, you agree to Educative's Terms of Service and Privacy Policy