PteroTheme/database/migrations/2015_12_03_210410_add_downl...

34 lines
688 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddDownloadsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('downloads', function (Blueprint $table) {
$table->increments('id')->unsigned();
$table->char('token', 36)->unique();
$table->mediumInteger('server');
$table->text('path');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('downloads');
}
}