0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-14 20:52:23 +00:00

Updated composer deps, applied latest StyleCI changes

This commit is contained in:
Dan Brown 2022-04-24 18:22:40 +01:00
parent 63cb6015a8
commit 2b0ae23da0
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9
14 changed files with 182 additions and 186 deletions

View file

@ -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');
});