| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function up() |
||
| 17 | { |
||
| 18 | Schema::create('languages', function (Blueprint $table) { |
||
| 19 | $table->bigIncrements('id')->primaryKey(); |
||
| 20 | $table->string('locale', 8); |
||
| 21 | $table->string('short_name', 3); |
||
| 22 | $table->string('name', 64); |
||
| 23 | $table->unsignedTinyInteger('default')->default(0); |
||
| 24 | $table->timestamps(); |
||
| 25 | }); |
||
| 37 |