-
Notifications
You must be signed in to change notification settings - Fork 8
/
PLNPluginSchemaMigration.inc.php
61 lines (56 loc) · 2.88 KB
/
PLNPluginSchemaMigration.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* @file classes/migration/PLNPluginSchemaMigration.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 PLNPluginSchemaMigration
* @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 PLNPluginSchemaMigration extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up() {
// PLN Deposit Objects
Capsule::schema()->create('pln_deposit_objects', function (Blueprint $table) {
$table->bigInteger('deposit_object_id')->autoIncrement();
$table->bigInteger('journal_id');
$table->bigInteger('object_id');
$table->string('object_type', 36);
$table->bigInteger('deposit_id')->nullable();
$table->datetime('date_created');
$table->datetime('date_modified')->nullable();
});
// PLN Deposits
Capsule::schema()->create('pln_deposits', function (Blueprint $table) {
$table->bigInteger('deposit_id')->autoIncrement();
$table->bigInteger('journal_id');
$table->string('uuid', 36)->nullable();
$table->bigInteger('status')->default(0)->nullable();
$table->datetime('date_status')->nullable();
$table->datetime('date_created');
$table->datetime('date_modified')->nullable();
$table->string('export_deposit_error', 1000)->nullable();
});
// Temporarily back up the old scheduled_tasks entry for this plugin, if there is one
Capsule::connection()->unprepared("UPDATE scheduled_tasks SET class_name='plugins.generic.pln.classes.tasks.Depositor_TEMP' WHERE class_name='plugins.generic.pln.classes.tasks.Depositor'");
// Create a new scheduled_tasks entry for this plugin
Capsule::connection()->unprepared("INSERT INTO scheduled_tasks (class_name) VALUES ('plugins.generic.pln.classes.tasks.Depositor')");
// Update the last_run for the new entry from the old one, if it exists
switch (Capsule::connection()->getDriverName()) {
case 'mysql': Capsule::connection()->unprepared("UPDATE scheduled_tasks sta JOIN scheduled_tasks stb ON (stb.class_name='plugins.generic.pln.classes.tasks.Depositor_TEMP') SET sta.last_run = stb.last_run WHERE sta.class_name='plugins.generic.pln.classes.tasks.Depositor'"); break;
case 'pgsql': Capsule::connection()->unprepared("UPDATE scheduled_tasks sta SET last_run=stb.last_run FROM scheduled_tasks stb WHERE sta.class_name='plugins.generic.pln.classes.tasks.Depositor' AND stb.class_name='plugins.generic.pln.classes.tasks.Depositor_TEMP'"); break;
default: throw new Exception('Unsupported database');
}
// Delete the old scheduled tasks entry
Capsule::connection()->unprepared("DELETE FROM scheduled_tasks WHERE class_name='plugins.generic.pln.classes.tasks.Depositor_TEMP'");
}
}