Made it so they can now make there own dynamic guide

This commit is contained in:
2020-08-04 13:21:23 +02:00
parent e8f6c2242a
commit c223cb967c
13 changed files with 383 additions and 0 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateGuidesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('guides', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('name');
$table->longText('guideArticles');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('guides');
}
}