diff options
author | Khaled Lela <eng.khaled.lela@gmail.com> | 2022-02-12 15:31:40 +0200 |
---|---|---|
committer | Khaled Lela <eng.khaled.lela@gmail.com> | 2022-02-12 15:31:40 +0200 |
commit | 0064e98aaef85e8db7d42b009b250983534aff74 (patch) | |
tree | a876f8b0d8cdd55a472125742a86b98c7282e47f | |
parent | 3bbb54762498dbb149e6e4df221b940d7cd947bb (diff) | |
parent | 4a36318e1ba5b5d50afe0a7991168df26945f52d (diff) |
Merge branch 'handle_publish_translations' into main
-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(); }); |