Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('cruds', function (Blueprint $table) { |
||
17 | $table->id(); |
||
18 | $table->string('name')->unique(); |
||
19 | $table->string('model')->unique(); |
||
20 | $table->string('route')->unique(); |
||
21 | $table->string('icon')->default('fas fa-bars'); |
||
22 | $table->boolean('active')->default(true); |
||
23 | $table->boolean('built')->default(false); |
||
24 | $table->boolean('with_acl')->default(false); |
||
25 | $table->boolean('with_policy')->default(false); |
||
26 | $table->timestamps(); |
||
27 | }); |
||
40 |