for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/**
* Class AddClickUpTokenToUsersTable
*
* Adds a column for the ClickUp API token to your users table.
*/
class AddClickUpTokenToUsersTable extends Migration
{
* Run the migrations.
* @return void
public function up()
Schema::table(
'users',
function (Blueprint $table) {
$table->string('clickup_token', 1024)
->after('password')
->nullable();
}
);
* Reverse the migrations.
public function down()
$table->dropColumn('clickup_token');