0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-13 20:31:45 +00:00

edit summary

This commit is contained in:
Younès EL BIACHE 2016-07-07 20:53:43 +02:00
parent 10418323ef
commit 6bc72e157a
7 changed files with 49 additions and 9 deletions

View file

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