Files
site/database/migrations/2022_11_01_173444_update_points_table.php

34 lines
638 B
PHP
Executable File

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdatePointsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('points', function (Blueprint $table) {
$table->jsonb('meta')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('points', function (Blueprint $table) {
$table->dropColumn('meta');
});
}
}