| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 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 | }); |
||
| 26 | } |
||
| 27 | |||
| 37 |