Skip to content

Commit

Permalink
wtf twitter?
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKrisKrisu committed Jan 8, 2025
1 parent 88e8b81 commit 5372ca1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions database/migrations/2025_01_08_000001_what_the_fuck_twitter_id.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void {
Schema::table('social_login_profiles', function(Blueprint $table) {
$table->string('twitter_id')->nullable()->change();
});
}

/**
* Reverse the migrations.
*/
public function down(): void {
Schema::table('social_login_profiles', function(Blueprint $table) {
$table->string('twitter_id')->nullable(false)->change();
});
}
};

0 comments on commit 5372ca1

Please sign in to comment.