summaryrefslogtreecommitdiff
path: root/database/migrations
diff options
context:
space:
mode:
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();
});