Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2485122
2021_10_27_120000_extend_openvidu_rooms_session_id.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
792 B
Referenced Files
None
Subscribers
None
2021_10_27_120000_extend_openvidu_rooms_session_id.php
View Options
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
// phpcs:ignore
class
ExtendOpenviduRoomsSessionId
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'openvidu_rooms'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'session_id'
,
36
)->
change
();
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
table
(
'openvidu_rooms'
,
function
(
Blueprint
$table
)
{
// $table->string('session_id', 16)->change();
}
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 21, 1:06 AM (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387345
Default Alt Text
2021_10_27_120000_extend_openvidu_rooms_session_id.php (792 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment