1 | Make a plugin
php artisan create:plugin PaulAllen.profile
2 | In the udates folder, edit the database migration file. In this example it's create_profiles_table.php. We'll use this to add a column to the users table. I'm keeping this simple but in production you may want to make sure the users table actually exists. Here we are just adding a "bio" column.
<?php namespace PaulAllen\Profile\Updates;
use Schema;