v1.5.13 Added crud files

This commit is contained in:
2021-04-22 15:31:42 +02:00
parent 9056bc6335
commit fe1cda993a
3 changed files with 205 additions and 0 deletions
@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMultipleEvents extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('multiple_events', function (Blueprint $table) {
$table->id();
$table->string('week');
$table->json('date');
$table->json('event_name');
$table->json('accountable');
//$table->longText('event_name');
//$table->string('accountable');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('multipleevents_controllers');
}
}