Page MenuHomePhorge

2021_04_08_150000_signup_code_headers.php
No OneTemporary

Size
754 B
Referenced Files
None
Subscribers
None

2021_04_08_150000_signup_code_headers.php

<?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

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)

Event Timeline