Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function up() |
||
22 | { |
||
23 | Schema::create(config('easy_panel_config.database.panel_admin_table'), function (Blueprint $table) { |
||
24 | $table->id(); |
||
25 | $table->foreignId('user_id')->constrained(); |
||
26 | $table->boolean('is_superuser'); |
||
27 | $table->timestamps(); |
||
28 | |||
29 | $table->unique(['user_id']); |
||
30 | }); |
||
43 |