Page MenuHomePhorge

2020_11_20_140000_extend_settings_value_column.php
No OneTemporary

Authored By
Unknown
Size
787 B
Referenced Files
None
Subscribers
None

2020_11_20_140000_extend_settings_value_column.php

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
// phpcs:ignore
class ExtendSettingsValueColumn extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table(
'user_settings',
function (Blueprint $table) {
$table->text('value')->change();
}
);
Schema::table(
'wallet_settings',
function (Blueprint $table) {
$table->text('value')->change();
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// do nothing
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:50 AM (6 d, 13 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18741720
Default Alt Text
2020_11_20_140000_extend_settings_value_column.php (787 B)

Event Timeline