| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('modules', function (Blueprint $table) { |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->string('name'); |
||
| 19 | $table->string('path'); |
||
| 20 | $table->string('alias')->nullable(); |
||
| 21 | $table->string('version')->default('1.0.0'); |
||
| 22 | $table->text('description')->nullable(); |
||
| 23 | $table->text('keywords')->nullable(); |
||
| 24 | $table->boolean('is_active')->default(true); |
||
| 25 | $table->integer('order')->default(0); |
||
| 26 | $table->text('providers')->nullable(); |
||
| 27 | $table->text('aliases')->nullable(); |
||
| 28 | $table->text('files')->nullable(); |
||
| 29 | $table->text('requires')->nullable(); |
||
| 30 | $table->integer('priority')->default(0); |
||
| 31 | $table->nullableTimestamps(); |
||
| 32 | }); |
||
| 33 | } |
||
| 34 | |||
| 45 |