Skip to content

Commit

Permalink
Add postgres migration
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed May 3, 2023
1 parent 670b3ba commit 79b6a17
Showing 1 changed file with 36 additions and 0 deletions.
@@ -0,0 +1,36 @@
<?php

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

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$type = config('database.default');

if($type === 'pgsql') {
DB::statement("ALTER TABLE statuses DROP CONSTRAINT statuses_visibility_check");

$types = ['public', 'unlisted', 'private', 'direct', 'draft'];
$result = join( ', ', array_map(function ($value){
return sprintf("'%s'::character varying", $value);
}, $types));

DB::statement("ALTER TABLE statuses ADD CONSTRAINT statuses_visibility_check CHECK (visibility::text = ANY (ARRAY[$result]::text[]))");
}
}

/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};

0 comments on commit 79b6a17

Please sign in to comment.