mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Updated composer deps, applied latest StyleCI changes
This commit is contained in:
@ -16,7 +16,7 @@ class AddEditorChangeFieldAndPermission extends Migration
|
||||
public function up()
|
||||
{
|
||||
// Add the new 'editor' column to the pages table
|
||||
Schema::table('pages', function(Blueprint $table) {
|
||||
Schema::table('pages', function (Blueprint $table) {
|
||||
$table->string('editor', 50)->default('');
|
||||
});
|
||||
|
||||
@ -52,7 +52,7 @@ class AddEditorChangeFieldAndPermission extends Migration
|
||||
public function down()
|
||||
{
|
||||
// Drop the new column from the pages table
|
||||
Schema::table('pages', function(Blueprint $table) {
|
||||
Schema::table('pages', function (Blueprint $table) {
|
||||
$table->dropColumn('editor');
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user