@@ 7-32 (lines=26) @@ | ||
4 | use Illuminate\Database\Schema\Blueprint; |
|
5 | use Illuminate\Support\Facades\Schema; |
|
6 | ||
7 | class AddDisableStatusColumnToUsersTable extends Migration |
|
8 | { |
|
9 | /** |
|
10 | * Run the migrations. |
|
11 | * |
|
12 | * @return void |
|
13 | */ |
|
14 | public function up() |
|
15 | { |
|
16 | Schema::table('users', function (Blueprint $table) { |
|
17 | $table->boolean('disable_status')->default(false); |
|
18 | }); |
|
19 | } |
|
20 | ||
21 | /** |
|
22 | * Reverse the migrations. |
|
23 | * |
|
24 | * @return void |
|
25 | */ |
|
26 | public function down() |
|
27 | { |
|
28 | Schema::table('users', function (Blueprint $table) { |
|
29 | $table->dropColumn('disable_status'); |
|
30 | }); |
|
31 | } |
|
32 | } |
|
33 |
@@ 7-32 (lines=26) @@ | ||
4 | use Illuminate\Database\Schema\Blueprint; |
|
5 | use Illuminate\Support\Facades\Schema; |
|
6 | ||
7 | class AddUseDatepickerColumnToUsersTable extends Migration |
|
8 | { |
|
9 | /** |
|
10 | * Run the migrations. |
|
11 | * |
|
12 | * @return void |
|
13 | */ |
|
14 | public function up() |
|
15 | { |
|
16 | Schema::table('users', function (Blueprint $table) { |
|
17 | $table->boolean('use_datepicker')->default(false); |
|
18 | }); |
|
19 | } |
|
20 | ||
21 | /** |
|
22 | * Reverse the migrations. |
|
23 | * |
|
24 | * @return void |
|
25 | */ |
|
26 | public function down() |
|
27 | { |
|
28 | Schema::table('users', function (Blueprint $table) { |
|
29 | $table->dropColumn('use_datepicker'); |
|
30 | }); |
|
31 | } |
|
32 | } |
|
33 |