2020-06-30 09:27:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2020-07-27 06:24:16 +00:00
|
|
|
class CreateResource extends Migration
|
2020-06-30 09:27:39 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-07-27 06:24:16 +00:00
|
|
|
Schema::create('resources', function (Blueprint $table) {
|
2020-06-30 09:27:39 +00:00
|
|
|
$table->id();
|
2020-07-27 06:24:16 +00:00
|
|
|
$table->string("filename")->unique();
|
|
|
|
$table->unsignedInteger("extension_id");
|
2020-06-30 09:27:39 +00:00
|
|
|
$table->timestamps();
|
2020-07-27 06:24:16 +00:00
|
|
|
|
|
|
|
$table->foreign("extension_id")->references("id")->on("resource_extensions");
|
2020-06-30 09:27:39 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2020-07-27 06:24:16 +00:00
|
|
|
Schema::dropIfExists('resources');
|
2020-06-30 09:27:39 +00:00
|
|
|
}
|
|
|
|
}
|