Update 2025_03_19_022553_add_pinned_columns_statuses_table.php

pull/5914/head
Daniel Supernault 2025-04-01 21:07:30 -06:00
rodzic c9a0fe0026
commit f70e0b4ae0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('statuses', function (Blueprint $table) {
$table->integer('pinned_order')->nullable()->default(null);
$table->tinyInteger('pinned_order')->nullable()->default(null)->index();
});
}