summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2022-09-05 09:45:04 +0100
committerSam Light <samlight1994@gmail.com>2022-09-05 09:45:04 +0100
commit08908a314cb75dbcf51e6221c2f2c49d3a55d17f (patch)
tree994b65cc5a3eb70c720cece5e3c4536aff72c7c1 /database
parentcb292e5674afde1ac99de9c9d3d2dbac5f8c0aee (diff)
Implemented majority of the player functionality
Diffstat (limited to 'database')
-rw-r--r--database/migrations/scorm_player_improvements.php.stub53
1 files changed, 53 insertions, 0 deletions
diff --git a/database/migrations/scorm_player_improvements.php.stub b/database/migrations/scorm_player_improvements.php.stub
new file mode 100644
index 0000000..4ee5d03
--- /dev/null
+++ b/database/migrations/scorm_player_improvements.php.stub
@@ -0,0 +1,53 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table('scorm_sco_tracking', function (Blueprint $table) {
+ $table->renameColumn('exit_mode', 'exit');
+ $table->renameColumn('lesson_location', 'location');
+ $table->renameColumn('lesson_mode', 'mode');
+ $table->string('session_time')->change();
+ });
+
+ Schema::table('scorm', function (Blueprint $table) {
+ $table->unique('uuid');
+ });
+
+ Schema::table('scorm_sco', function (Blueprint $table) {
+ $table->unique('uuid');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table('scorm_sco_tracking', function (Blueprint $table) {
+ $table->renameColumn('exit', 'exit_mode');
+ $table->renameColumn('location', 'lesson_location');
+ $table->renameColumn('mode', 'lesson_mode');
+ });
+
+ Schema::table('scorm', function (Blueprint $table) {
+ $table->dropUnique('scorm_uuid_unique');
+ });
+
+ Schema::table('scorm_sco', function (Blueprint $table) {
+ $table->dropUnique('scorm_sco_uuid_unique');
+ });
+ }
+};