36 lines
779 B
PHP
36 lines
779 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration {
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('revisions', function (Blueprint $table) {
|
|
$table->uuid('id')->primary();
|
|
$table->uuid('recordId');
|
|
$table->string('schema');
|
|
$table->jsonb('data');
|
|
$table->jsonb('_sys');
|
|
$table->jsonb('_file');
|
|
$table->jsonb('_edges');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('revisions');
|
|
}
|
|
};
|