ultimatepos/database/migrations/2018_12_14_103307_modify_system_table.php

28 lines
447 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// DB::statement("ALTER TABLE system MODIFY COLUMN value TEXT DEFAULT NULL");
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};