1
0
Fork 0

Add migration

This commit is contained in:
Daniel Supernault 2021-01-17 01:36:03 -07:00
parent 36a722aa3c
commit fa6ecd8df1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
3 changed files with 39 additions and 4 deletions

View File

@ -8,7 +8,7 @@ use Illuminate\Support\Str;
class Config {
public static function get() {
return Cache::remember('api:site:configuration:_v0', now()->addHours(30), function() {
return Cache::remember('api:site:configuration:_v0.1', now()->addHours(30), function() {
return [
'open_registration' => config('pixelfed.open_registration'),
'uploader' => [
@ -34,7 +34,8 @@ class Config {
'ab' => [
'lc' => config('exp.lc'),
'rec' => config('exp.rec'),
'loops' => config('exp.loops')
'loops' => config('exp.loops'),
'top' => config('exp.top')
],
'site' => [

View File

@ -3,6 +3,7 @@
return [
'lc' => env('EXP_LC', false),
'rec' => env('EXP_REC', false),
'loops' => env('EXP_LOOPS', false),
'rec' => false,
'loops' => false,
'top' => env('EXP_TOP', false),
];

View File

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateInstanceActorsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('instance_actors', function (Blueprint $table) {
$table->id();
$table->text('private_key')->nullable();
$table->text('public_key')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('instance_actors');
}
}