Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2485000
2021_04_08_150000_signup_code_headers.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
754 B
Referenced Files
None
Subscribers
None
2021_04_08_150000_signup_code_headers.php
View Options
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
// phpcs:ignore
class
SignupCodeHeaders
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'signup_codes'
,
function
(
Blueprint
$table
)
{
$table
->
text
(
'headers'
)->
nullable
();
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
table
(
'signup_codes'
,
function
(
Blueprint
$table
)
{
$table
->
dropColumn
(
'headers'
);
}
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Nov 20, 5:23 PM (22 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
386960
Default Alt Text
2021_04_08_150000_signup_code_headers.php (754 B)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment