for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Author: Emmanuel Paul Mnzava
* Twitter: @epmnzava
* Github:https://github.com/dbrax/eticket
* Email: [email protected]
*
*/
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateOrganizerTable extends Migration
{
* Run the migrations.
* @return void
public function up()
Schema::create('organizer', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('userid')->nullable(); //??? in multitenant or distribution
$table->string("name");
$table->string("timezone")->nullable();
$table->string("logo")->nullable();
$table->string("url")->nullable();
$table->string("currency")->nullable();
$table->text("description")->nullable();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('organizer');