//exemple :
//php artisan make:migration add_new_column_to_my_table_table --table=my_table
//php artisan make:migration add_login_to_users_table --table=users
public function up()
{
Schema::table('my_table', function($table) {
$table->integer('new_column')->after('other_column_name');
//with after it's better to place it in your table
});
}
public function down()
{
Schema::table('my_table', function($table) {
$table->dropColumn('new_column');
});
}
// The table method on the Schema facade MAY BE USED TO UPDATE EXISTING TABLES.
// The table method accepts two arguments: the name of the table and a Closure
// that receives a Blueprint instance you may use to add columns to the table:
Schema::table('users', function (Blueprint $table) {
$table->string('email');
});