Download the PHP package windwalker/rad-development-bundle without Composer
On this page you can find all versions of the php package windwalker/rad-development-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download windwalker/rad-development-bundle
More information about windwalker/rad-development-bundle
Files in windwalker/rad-development-bundle
Package rad-development-bundle
Short Description Development Bundle includes Seeders and Sql sync tools.
License GNU Lesser General Public License
Informations about the package rad-development-bundle
Windwalker Joomla RAD Development Bundle
Some helpful command line tools to operate database for development.
Table of Content
- Sqlsync
- Seeder
Installation via Composer
Commands
SQL Sync
Windwalker Sqlsync is a powerful SQL compare & diff tools help developers update their SQL schema.
Why Not Migration Tools?
Actually, we are developing a migration tools for Joomla & Windwalker now, but migration is not so suitable for Joomla CMS, sometimes we will want to sync Joomla articles, modules, extensions and menus to your production server. Migration tools are hard to do this.
So, using Sqlsync tools will help you compare sql schema between your local & remote machine, simply run export
in your local,
and git track all schema YAML files. Then push your files to remote server and run import
, all schemas will update to remote.
Currently Sqlsync are weak on column name change, you can use hooks to do this.
Export & Import SQL Schema
Scheam will export to resources/sqlsync/default/schema.yml
Track Tables
Table track information stores in resources/sqlsync/default/track.yml
Default is:
There are 3 track rules:
all
- Track all data, always refresh data when import & export.cols
- Only track table columns, do not refresh data.none
- Ignore this table
All table which not list in track.yml will be
none
.
Sync Track Tables
If you installed a new component, there may be multiple tables added to ypur database, you can run:
To auto add all non-tracked table to track.yml
Status
This command help you check table track information.
Profiles
You can change profile by use
Now you can export schema to other profile, this is very similar to git branches.
Quick import & export to profile
You don't need to always checkout profiles, add profiles as arguments in commands.
This operations can support export
/ import
both commands.
Rename Column
Modify From
property in your schema files.
All oldnames in From
property will convert to newname
Currently Sqlsync are weak on column name change, try avoid to do this operation.
Export & Import Hooks
Add these files to profile folder.
And simply write your script to do something.
Seeder
Windwalker Developement Bundle provides a simple seeder and faker tools to help you generate fake data.
Open resources/seeders/DatabaseSeeder.php
, you will see DatabaseSeeder
default class:
Add a new seeder class at resources/seeders/ProductSeeder.php
And set this class to DatabaseSeeder
, you must sort seeders by denpendencies.
Now run seeder by:
Or clear it