Sometimes we use phpMyAdmin
or any other tool to create our tables and to modify the columns in the database but we also wanted to keep track of them to share the schema across the developers.
So for this purpose, we have created a laravel package to keep the track of raw SQL migration using the package Laravel raw sql query migration
You can read the documentation here https://github.com/Readerstacks/laravel_query_migration
Let’s understand how it works
To install the package we can simply run the below command
composer require readerstacks/querymigration
Above Command will update your composer.json
You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your config/app.php
file adding the following code at the end of your 'providers'
section:
<?php
return [
// ...
'providers' => [
Readerstacks\QueryMigration\QueryMigrationServiceProvider::class,
// ...
],
// ...
];
Now publish config file so we can keep track of our raw SQL migrations
php artisan vendor:publish --provider="Readerstacks\QueryMigration\QueryMigrationServiceProvider"
Now create table in database for raw query using below command
php artisan migrate
Above Command will create a table in database named as query_migrations
.
php artisan QueryMigrate migrate
Add Query
php artisan QueryMigrate add --run
This will ask to enter the query to update the migration file and also run the query in the database
If you want to update the migration and not wanted to run in-database then remove –run option as below
php artisan QueryMigrate add
In your terminal type
php artisan QueryMigrate pending
Run migrations
In your terminal type
php artisan QueryMigrate migrate
In your terminal type
php artisan QueryMigrate list
list all migration list
In your terminal type
php artisan QueryMigrate migrate --uid=uid_of_migration
In your terminal type
php artisan QueryMigrate migrate --uid=uid_of_migration --f
To get the UID of migration you can open config/query_migration_config.php
and find UID of query.
In your terminal type
php artisan QueryMigrate remove --uid=uid_of_migration
In your terminal type
php artisan QueryMigrate removeAll
In your terminal type
php artisan QueryMigrate remove --uid=uid_of_migration
In your terminal type
php artisan QueryMigrate pending
Also published here.