Remove OStatus legacy code

This commit is contained in:
Daniel Supernault 2019-07-15 19:06:59 -06:00
parent 0a9a98973d
commit 01fd26a296
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 28 additions and 10 deletions

View File

@ -1,10 +0,0 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WebSub extends Model
{
//
}

View File

@ -0,0 +1,28 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveWebSubsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::dropIfExists('web_subs');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('web_subs');
}
}