blob: 496aca4d16ea5a9907ab6d42d01edbf5137a24ea (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateScormTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$tableNames = config('scorm.table_names');
if (empty($tableNames)) {
throw new \Exception('Error: config/scorm.php not loaded. Run [php artisan config:clear] and try again.');
}
// scorm_model
Schema::create($tableNames['scorm_table'], function (Blueprint $table) {
$table->bigIncrements('id');
$table->nullableMorphs('resource');
$table->string('title');
$table->string('origin_file')->nullable();
$table->string('version');
$table->double('ratio')->nullable();
$table->string('uuid');
$table->string('entry_url')->nullable();
$table->timestamps();
});
// scorm_sco_model
Schema::create($tableNames['scorm_sco_table'], function (Blueprint $table) use ($tableNames) {
$table->bigIncrements('id');
$table->bigInteger('scorm_id')->unsigned();
$table->string('uuid');
$table->bigInteger('sco_parent_id')->unsigned()->nullable();
$table->string('entry_url')->nullable();
$table->string('identifier');
$table->string('title');
$table->tinyInteger('visible');
$table->longText('sco_parameters')->nullable();
$table->longText('launch_data')->nullable();
$table->string('max_time_allowed')->nullable();
$table->string('time_limit_action')->nullable();
$table->tinyInteger('block');
$table->integer('score_int')->nullable();
$table->decimal('score_decimal', 10,7)->nullable();
$table->decimal('completion_threshold', 10,7)->nullable();
$table->string('prerequisites')->nullable();
$table->timestamps();
$table->foreign('scorm_id')->references('id')->on($tableNames['scorm_table']);
});
// scorm_sco_tracking_model
Schema::create($tableNames['scorm_sco_tracking_table'], function (Blueprint $table) use ($tableNames) {
$table->bigIncrements('id');
$table->bigInteger('user_id')->unsigned();
$table->bigInteger('sco_id')->unsigned();
$table->string('uuid');
$table->double('progression');
$table->integer('score_raw')->nullable();
$table->integer('score_min')->nullable();
$table->integer('score_max')->nullable();
$table->decimal('score_scaled', 10,7)->nullable();
$table->string('lesson_status')->nullable();
$table->string('completion_status')->nullable();
$table->integer('session_time')->nullable();
$table->integer('total_time_int')->nullable();
$table->string('total_time_string')->nullable();
$table->string('entry')->nullable();
$table->longText('suspend_data')->nullable();
$table->string('credit')->nullable();
$table->string('exit_mode')->nullable();
$table->string('lesson_location')->nullable();
$table->string('lesson_mode')->nullable();
$table->tinyInteger('is_locked')->nullable();
$table->longText('details')->comment('json_array')->nullable();
$table->dateTime('latest_date')->nullable();
$table->timestamps();
$table->foreign('user_id')->references('id')->on($tableNames['user_table']);
$table->foreign('sco_id')->references('id')->on($tableNames['scorm_sco_table']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$tableNames = config('scorm.table_names');
if (empty($tableNames)) {
throw new \Exception('Error: Table not found.');
}
Schema::drop($tableNames['scorm_sco_tracking_table']);
Schema::drop($tableNames['scorm_sco_table']);
Schema::drop($tableNames['scorm_table']);
}
}
|