1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Applied required changes

This commit is contained in:
Nilesh Deepak
2017-07-05 12:26:02 +05:30
5 changed files with 30 additions and 4 deletions

View File

@ -17,8 +17,8 @@ class CreateUsersTable extends Migration
$table->string('name');
$table->string('email')->unique();
$table->string('password', 60);
$table->rememberToken();
$table->string('books_display')->default('grid');
$table->rememberToken();
$table->nullableTimestamps();
});

View File

@ -23,8 +23,8 @@ class CreateBooksTable extends Migration
$table->string('name');
$table->string('slug')->indexed();
$table->text('description');
$table->nullableTimestamps();
$table->string('image');
$table->nullableTimestamps();
});
}