File "2016_01_23_060953_CreateDatabaseBackupsTable.php"
Full Path: /home/isoftco/public_html/hrm/database/migrations/2016_01_23_060953_CreateDatabaseBackupsTable.php
File size: 622 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDatabaseBackupsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('database_backups', function(Blueprint $table)
{
$table->increments('id');
$table->string('filename',50);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('database_backups');
}
}