Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120826138
2020_11_20_140000_extend_settings_value_column.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
787 B
Referenced Files
None
Subscribers
None
2020_11_20_140000_extend_settings_value_column.php
View Options
<?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
Details
Attached
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)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline