sync github

This commit is contained in:
Benjamin Takats
2023-01-16 18:57:40 +01:00
parent d7df6d1b50
commit f4adf2390f
4 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::table('meetups', function (Blueprint $table) {
$table->json('github_data')
->nullable();
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
//
}
};