We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f6b667 commit da9e202Copy full SHA for da9e202
README.md
@@ -133,3 +133,7 @@ Update your Scorm table:
133
- Change hash_name to title
134
- Remove origin_file_mime field
135
136
+***Upgrade from version 3 to 4:***
137
+Update your Scorm table:
138
+- Add identifier (varchar 191)
139
+
database/migrations/create_scorm_tables.php.stub
@@ -28,6 +28,7 @@ class CreateScormTables extends Migration
28
$table->string('version');
29
$table->double('ratio')->nullable();
30
$table->string('uuid');
31
+ $table->string('identifier');
32
$table->string('entry_url')->nullable();
33
$table->timestamps();
34
});
src/Model/ScormModel.php
@@ -30,6 +30,7 @@ class ScormModel extends Model
'version',
'ratio',
'uuid',
+ 'identifier',
'entry_url',
35
'created_at',
36
'updated_at',
0 commit comments