| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('subms', function (Blueprint $table) { |
||
| 17 | $table->id(); |
||
| 18 | $table->string('group')->nullable(); |
||
| 19 | $table->integer('gid')->nullable(); |
||
| 20 | $table->string('name')->nullable(); |
||
| 21 | $table->integer('addr_id')->nullable(); |
||
| 22 | $table->string('rin')->nullable(); |
||
| 23 | $table->string('rfn')->nullable(); |
||
| 24 | $table->string('lang')->nullable(); |
||
| 25 | $table->string('phon')->nullable(); |
||
| 26 | $table->string('email')->nullable(); |
||
| 27 | $table->string('fax')->nullable(); |
||
| 28 | $table->string('www')->nullable(); |
||
| 29 | $table->timestamps(); |
||
| 30 | }); |
||
| 43 |