@@ -24,11 +24,11 @@ |
||
| 24 | 24 | }); |
| 25 | 25 | |
| 26 | 26 | Schema::create('languages', function (Blueprint $table) { |
| 27 | - $table->engine = 'InnoDB'; |
|
| 27 | + $table->engine = 'InnoDB'; |
|
| 28 | 28 | $table->string('code')->unique(); |
| 29 | 29 | $table->primary('code'); |
| 30 | 30 | |
| 31 | - $table->integer('position')->nullable(); |
|
| 31 | + $table->integer('position')->nullable(); |
|
| 32 | 32 | $table->string('name', 50); |
| 33 | 33 | |
| 34 | 34 | $table->timestamps(); |