v0.8.0 - Fixed ResourceController.php

This commit is contained in:
frederikpyt
2020-08-12 10:44:54 +02:00
parent 511e0b783f
commit fb88bfa4c8
8 changed files with 46 additions and 52 deletions
@@ -0,0 +1,36 @@
<?php
//Migrations acts as a version control for the database allowing you to modify the app's database schema
//allows use of necessary libraries
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateResource extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('resources', function (Blueprint $table) {
$table->id();
$table->string("filename")->unique();
$table->timestamps();
$table->foreignid("extension_id")->constrained("resource_extensions", "id");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('resources');
}
}