Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create(config('nova-ad-director.tables.ad_configurations'), |
||
17 | function (Blueprint $table) { |
||
18 | $table->id(); |
||
19 | $table->string('key', 255)->index(); |
||
20 | $table->string('location', 150)->index(); |
||
21 | $table->string('status', 50)->default('disabled')->index(); |
||
22 | $table->json('configuration')->nullable(); |
||
23 | $table->timestamps(); |
||
24 | |||
25 | $table->unique(['key', 'location']); |
||
26 | }); |
||
39 |