mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add db migration
This commit is contained in:
parent
4b96315d73
commit
327a0e2d7d
1 changed files 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;
|
||||
|
||||
class AddTypeToDirectMessagesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('direct_messages', function (Blueprint $table) {
|
||||
$table->string('type')->default('text')->nullable()->index()->after('from_id');
|
||||
$table->boolean('is_hidden')->default(false)->index()->after('group_message');
|
||||
$table->json('meta')->nullable()->after('is_hidden');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('direct_messages', function (Blueprint $table) {
|
||||
$table->dropColumn('type');
|
||||
$table->dropColumn('is_hidden');
|
||||
$table->dropColumn('meta');
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue