use jsonb column

This commit is contained in:
2018-07-12 20:51:40 +02:00
parent 52ab2c474e
commit 8fb5d30513
@@ -16,7 +16,7 @@ class CreateDataRowsTable extends Migration
Schema::create('data_rows', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('data_table_id')->index();
$table->longtext('data');
$table->jsonb('data');
$table->foreign('data_table_id')->references('id')->on('data_tables')
->onDelete('cascade');