File: /var/www/ojs/plugins/generic/staticPages/StaticPagesSchemaMigration.inc.php
<?php
/**
* @file classes/migration/StaticPagesSchemaMigration.inc.php
*
* Copyright (c) 2014-2020 Simon Fraser University
* Copyright (c) 2000-2020 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class StaticPagesSchemaMigration
* @brief Describe database table structures.
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Builder;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Capsule\Manager as Capsule;
class StaticPagesSchemaMigration extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up() {
// List of static pages for each context
Capsule::schema()->create('static_pages', function (Blueprint $table) {
$table->bigInteger('static_page_id')->autoIncrement();
$table->string('path', 255);
$table->bigInteger('context_id');
});
// Static Page settings.
Capsule::schema()->create('static_page_settings', function (Blueprint $table) {
$table->bigInteger('static_page_id');
$table->string('locale', 14)->default('');
$table->string('setting_name', 255);
$table->longText('setting_value')->nullable();
$table->string('setting_type', 6)->comment('(bool|int|float|string|object)');
$table->index(['static_page_id'], 'static_page_settings_static_page_id');
$table->unique(['static_page_id', 'locale', 'setting_name'], 'static_page_settings_pkey');
});
}
}