Laravel specific table Migration
Laravel specific table Migration
In this session, we will try our hand at solving the "Laravel specific table Migration".
-
Migrate a particular table in laravel
--PATH /database/migrations/<your_file_name>.phpphp artisan migrate --path=/database/migrations/2021_04_09_053158_create_projects_table.php
You can run a migration command to create a migration for a specific file under the database/migrations folder. Change the file name as per your file name instead of
2021_04_09_053158_create_projects_table.php
in my case and after that run migrate command. You table structure will be successfully created after the migrate command. -
Create Migrations In Different Folder In Laravel
php artisan migrate:make create_payments_table --path=app/migrations/payments
You can use the same --path option while creating migration and it will easily create the migration in the newly defined path. After running the above command new migration will be created into the app/migrations/payments folder.
-
Run All Migrations In Different Folder In Laravel
php artisan migrate --path=app/migrations/payments
we have created new migrations in a different folder structure (
app/migrations/payments
) thandatabase/migrations
. You can run all that migrations by using same--path
option withphp artisan migrate
command. -
How do I run a specific migration table?
- Migrate
php artisan migrate --path=/database/migrations/fileName.php
. - Roolback
php artisan migrate:rollback --path=/database/migrations/fileName.php
. - Refresh
php artisan migrate:refresh --path=/database/migrations/fileName.php
.
- Migrate
-
How to Migrate Specific File from Migration in Laravel?
To run the specific migration in Laravel, you need to use –path option with the php artisan migrate command. Let's take a simple example, we have '2019_12_04_131405_create_payments_table. php' migration in the database/migrations directory and we would like to run this migration.
-
How to migrate single migration in Laravel?
We just need to migrate only single or specific migration. If we run normal migrate command it will migrate all the migrations written in the application. Here i will let you know to migrate single migration in laravel. Now if we want to run only one migration or a specific migration, we will need to define a path parameter and will need to specify the path of that migration file which we want to run. eg:
php artisan migrate --path=/database/migrations/my_migration.php
.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
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.
Random Code Snippet Queries: Laravel
- How to pass query string to url in laravel
- How to check relationship is loaded or not in Laravel
- How to get route name on visit URL in laravel
- Rendering HTML from database table to view in Laravel
- How to get count of all records created at yesterday
- Include External CSS and JS file in Laravel
- Get duplicate records in laravel
- How to restore multiple records after soft-deletes in Laravel
- Create record with unique slug in laravel
- Call to undefined function Illuminate\Encryption\openssl_cipher_iv_length()
- Method Illuminate\Database\Eloquent\Collection::appends does not exist
- Link storage folder in laravel 8
- Get posts belongs to a specific user in Laravel
- How to customize pagination view in laravel
- Laravel get single row by id
- How to insert ckeditor data into database in Laravel?
- Route not defined in Laravel
- Create project table with model and migration
- How to remove package from laravel
- How to randomly get the user id from users table in laravel
- Target class [App\Http\Controllers\Auth\Request] does not exist.
- Display message with session flash using bootstrap alert class in laravel
- Submit form without CSRF token in Laravel
- Post model with title and body in laravel 8
- Get Array of IDs from Eloquent Collection