summaryrefslogtreecommitdiff
path: root/database/migrations
diff options
context:
space:
mode:
authordevianl2 <devianleong@gmail.com>2022-02-13 21:07:28 +0800
committerGitHub <noreply@github.com>2022-02-13 21:07:28 +0800
commit4a71aee0ab56a8450f5791554d06f544f6be1157 (patch)
treef899aaab754cf6708a823e33179b7167b3a6b079 /database/migrations
parent88d7940d4db9519c046f8c5375ef092da1daab35 (diff)
parent4a36318e1ba5b5d50afe0a7991168df26945f52d (diff)
Merge pull request #11 from KhaledLela/handle_publish_translations3.0.2
Handle publish translations for scorm runtime exceptions handler
Diffstat (limited to 'database/migrations')
-rw-r--r--database/migrations/create_scorm_tables.php.stub6
1 files changed, 3 insertions, 3 deletions
diff --git a/database/migrations/create_scorm_tables.php.stub b/database/migrations/create_scorm_tables.php.stub
index 6a136b3..cc9dc38 100644
--- a/database/migrations/create_scorm_tables.php.stub
+++ b/database/migrations/create_scorm_tables.php.stub
@@ -23,12 +23,12 @@ class CreateScormTables extends Migration
Schema::create($tableNames['scorm_table'], function (Blueprint $table) {
$table->bigIncrements('id');
$table->morphs('resource');
- $table->string('version');
- $table->string('hash_name');
+ $table->string('title');
$table->string('origin_file')->nullable();
- $table->string('origin_file_mime')->nullable();
+ $table->string('version');
$table->double('ratio')->nullable();
$table->string('uuid');
+ $table->string('entry_url')->nullable();
$table->timestamps();
});