mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Add new migration, add status visibility to StatusHashtag model
This commit is contained in:
parent
f90cf7f6f7
commit
c7eb639a8e
1 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class AddStatusVisibilityToStatusHashtagsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('status_hashtags', function (Blueprint $table) {
|
||||
$table->string('status_visibility')->nullable()->index()->after('profile_id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('status_hashtags', function (Blueprint $table) {
|
||||
$table->dropColumn('status_visibility');
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue