v1.5.13 Added crud files
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user