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 call Laravel route in jQuery
- How to display validation error in laravel
- Laravel create multiple records in Pivot table
- Route group with URI prefix using middleware and route name prefixes
- How to remove package from laravel
- How to decrypt laravel password
- How to add foreign key in laravel using migration
- How to remove P tag from CkEditor in Laravel?
- Extract only time from datetime in laravel
- Best Practices for Error Handling in Production Server Code (example code)
- Ajax POST request in laravel
- Argument 1 passed to App\Http\Controllers\Auth\LoginController::authenticated() must be an instance of App\Http\Controllers\Auth\Request
- Laravel 10 Breeze Authentication Example
- Send post data from controller to view
- Laravel order by date not working
- How to get tomorrow and yesterday date in laravel
- Ignore Records where a field has NULL value in Laravel
- Get last year created records in Laravel
- How to insert multiple rows in mysql using loop in laravel?
- Multiple Level eager loading in Laravel
- Call to a member function getRelationExistenceQuery() on array in Laravel
- Laravel URL validation not working
- On delete set foreign id column value null using migration in laravel 8
- How to get the id of last record from collection object in laravel view
- Display message with session flash using bootstrap alert class in laravel