Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | Schema::create('rakshak_settings', function (Blueprint $table) { |
||
18 | $table->uuid('id'); |
||
19 | $table->boolean('enable_2fa')->default(false); |
||
20 | $table->string('channel_2fa')->default('email'); |
||
21 | $table->string('control_level_2fa')->default('admin'); |
||
22 | $table->timestamps(); |
||
23 | |||
24 | $table->primary('id'); |
||
25 | }); |
||
26 | |||
27 | RakshakSetting::create(); |
||
28 | } |
||
40 |