for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFormEntriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create(config('forms-entries.tables.forms-entries'), function (Blueprint $table) {
\FormEntries\Helpers\MigrationHelper::defaultColumns($table);
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists(config('forms-entries.tables.forms-entries'));