Skip to content

Commit efef039

Browse files
Adding new interactive book v1.6 (#1333)
1 parent a71e2e1 commit efef039

File tree

2 files changed

+841
-0
lines changed

2 files changed

+841
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
class AddInteractiveBookSemantics extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*
12+
* @return void
13+
*/
14+
public function up()
15+
{
16+
\Artisan::call('db:seed', [
17+
'--class' => AddInteractiveBookSemanticsSeeder::class,
18+
'--force' => true
19+
]);
20+
}
21+
22+
/**
23+
* Reverse the migrations.
24+
*
25+
* @return void
26+
*/
27+
public function down()
28+
{
29+
//
30+
}
31+
}

0 commit comments

Comments
 (0)