blob: 4ee5d03c86a4ddf58bcba05ae3f25410ad4e5bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('scorm_sco_tracking', function (Blueprint $table) {
$table->renameColumn('exit_mode', 'exit');
$table->renameColumn('lesson_location', 'location');
$table->renameColumn('lesson_mode', 'mode');
$table->string('session_time')->change();
});
Schema::table('scorm', function (Blueprint $table) {
$table->unique('uuid');
});
Schema::table('scorm_sco', function (Blueprint $table) {
$table->unique('uuid');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('scorm_sco_tracking', function (Blueprint $table) {
$table->renameColumn('exit', 'exit_mode');
$table->renameColumn('location', 'lesson_location');
$table->renameColumn('mode', 'lesson_mode');
});
Schema::table('scorm', function (Blueprint $table) {
$table->dropUnique('scorm_uuid_unique');
});
Schema::table('scorm_sco', function (Blueprint $table) {
$table->dropUnique('scorm_sco_uuid_unique');
});
}
};
|