Browse Source

Merge 9a3662d909 into da26affe26

pull/23/merge
Eddie Hinkle 1 year ago
committed by GitHub
parent
commit
85c029cc21
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions
  1. +31
    -0
      compass/database/migrations/2018_02_27_224447_add_media_endpoint_to_databases_table.php

+ 31
- 0
compass/database/migrations/2018_02_27_224447_add_media_endpoint_to_databases_table.php View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddMediaEndpointToDatabasesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('databases', function (Blueprint $table) {
$table->string('micropub_media_endpoint', 255);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('databases', function (Blueprint $table) {
$table->dropColumn('micropub_media_endpoint');
});
}
}

Loading…
Cancel
Save