misc_pterodactyl-panel/database/migrations/2016_01_23_200159_add_downloads.php

30 lines
620 B
PHP
Raw Normal View History

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