root@zetawiki:/var/www/laravel# php artisan make:migration create_photos_table
Created Migration: 2016_05_15_090840_create_photos_table
root@zetawiki:/var/www/laravel# php artisan migrate:status
+------+------------------------------------------------+
| Ran? | Migration |
+------+------------------------------------------------+
| Y | 2014_10_12_100000_create_password_resets_table |
| Y | 2015_10_27_141258_create_tasks_table |
| N | 2016_05_15_090840_create_photos_table |
+------+------------------------------------------------+
root@zetawiki:/var/www/laravel# cat database/migrations/2016_05_15_090840_create_photos_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePhotosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}