Skip to main content

Posts

Showing posts from October, 2016

Simple way implement migration in your site (Using Laravel 5.3)

Hi Everyone, I want to share my migration experience (larvel 5.3) It’s to be good idea to implement in your site. If number of developers working in same script, no need of sharing your query changes to each to other. And also don’t worry about the table creation, fields changes in live server also. The single step will do this all the process for you. You just go to your folder path, hit the migrate command, it will do the all the changes will reflect in tables as well as field. 1 php artisan migrate JUST, WE WILL GO SHORT TOUR WITH MIGRATION HOW TO CREATE A TABLE USING MIGRATION: 1 php artisan make : migration create_users_table            If you want to create a table using migration, write a make migration command. php artisan make:migration is syntax and create users table is a migration file name. You can give the migration file name what ever you want, for over understanding, i have created a migration file name as  create_users