diff options
author | Khaled Lela <eng.khaled.lela@gmail.com> | 2022-02-12 15:30:07 +0200 |
---|---|---|
committer | Khaled Lela <eng.khaled.lela@gmail.com> | 2022-02-12 15:30:07 +0200 |
commit | 4a36318e1ba5b5d50afe0a7991168df26945f52d (patch) | |
tree | 8ee569efdd40c560b739ad6786538e3369658f2d | |
parent | 616c2bc6baab2a72fc516abd8e7f1fc1dec1b56b (diff) |
update scrom tables with missing columns
-rw-r--r-- | database/migrations/create_scorm_tables.php.stub | 6 |
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(); }); |