mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 06:35:43 +08:00
Making sure MyISAM is set for the tables that need it for new installtions that are using mariadb.
This commit is contained in:
parent
9d3f329bc9
commit
4acf0c4ee0
|
@ -13,6 +13,7 @@ class CreateBooksTable extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::create('books', function (Blueprint $table) {
|
||||
$table->engine = 'MyISAM';
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->string('slug')->indexed();
|
||||
|
|
|
@ -13,6 +13,7 @@ class CreatePagesTable extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::create('pages', function (Blueprint $table) {
|
||||
$table->engine = 'MyISAM';
|
||||
$table->increments('id');
|
||||
$table->integer('book_id');
|
||||
$table->integer('chapter_id');
|
||||
|
|
|
@ -13,6 +13,7 @@ class CreateChaptersTable extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::create('chapters', function (Blueprint $table) {
|
||||
$table->engine = 'MyISAM';
|
||||
$table->increments('id');
|
||||
$table->integer('book_id');
|
||||
$table->string('slug')->indexed();
|
||||
|
|
Loading…
Reference in New Issue
Block a user