2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2016-01-23 21:42:25 +01:00
|
|
|
class AddDownloads extends Migration
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('downloads', function (Blueprint $table) {
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->increments('id');
|
2015-12-06 19:58:49 +01:00
|
|
|
$table->char('token', 36)->unique();
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->char('server', 36);
|
2015-12-06 19:58:49 +01:00
|
|
|
$table->text('path');
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExists('downloads');
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
}
|