@@ 7-32 (lines=26) @@ | ||
4 | use Illuminate\Database\Schema\Blueprint; |
|
5 | use Illuminate\Support\Facades\Schema; |
|
6 | ||
7 | class CreatePrioritiesTable extends Migration |
|
8 | { |
|
9 | /** |
|
10 | * Run the migrations. |
|
11 | * |
|
12 | * @return void |
|
13 | */ |
|
14 | public function up() |
|
15 | { |
|
16 | Schema::create('priorities', function (Blueprint $table) { |
|
17 | $table->bigIncrements('id'); |
|
18 | $table->string('name'); |
|
19 | $table->timestamps(); |
|
20 | }); |
|
21 | } |
|
22 | ||
23 | /** |
|
24 | * Reverse the migrations. |
|
25 | * |
|
26 | * @return void |
|
27 | */ |
|
28 | public function down() |
|
29 | { |
|
30 | Schema::dropIfExists('priorities'); |
|
31 | } |
|
32 | } |
|
33 |
@@ 7-32 (lines=26) @@ | ||
4 | use Illuminate\Database\Schema\Blueprint; |
|
5 | use Illuminate\Support\Facades\Schema; |
|
6 | ||
7 | class CreateStatusesTable extends Migration |
|
8 | { |
|
9 | /** |
|
10 | * Run the migrations. |
|
11 | * |
|
12 | * @return void |
|
13 | */ |
|
14 | public function up() |
|
15 | { |
|
16 | Schema::create('statuses', function (Blueprint $table) { |
|
17 | $table->bigIncrements('id'); |
|
18 | $table->string('name'); |
|
19 | $table->timestamps(); |
|
20 | }); |
|
21 | } |
|
22 | ||
23 | /** |
|
24 | * Reverse the migrations. |
|
25 | * |
|
26 | * @return void |
|
27 | */ |
|
28 | public function down() |
|
29 | { |
|
30 | Schema::dropIfExists('statuses'); |
|
31 | } |
|
32 | } |
|
33 |