@@ -52,8 +52,8 @@ |
||
| 52 | 52 | * Execute the console command for Laravel 5.5 |
| 53 | 53 | * this laravel version call handle intead of fire |
| 54 | 54 | */ |
| 55 | - public function handle() |
|
| 56 | - { |
|
| 57 | - $this->fire(); |
|
| 58 | - } |
|
| 55 | + public function handle() |
|
| 56 | + { |
|
| 57 | + $this->fire(); |
|
| 58 | + } |
|
| 59 | 59 | } |
@@ -21,11 +21,11 @@ |
||
| 21 | 21 | }); |
| 22 | 22 | |
| 23 | 23 | Schema::create('languages', function (Blueprint $table) { |
| 24 | - $table->engine = 'InnoDB'; |
|
| 24 | + $table->engine = 'InnoDB'; |
|
| 25 | 25 | $table->string('code')->unique(); |
| 26 | 26 | $table->primary('code'); |
| 27 | 27 | |
| 28 | - $table->integer('position')->nullable(); |
|
| 28 | + $table->integer('position')->nullable(); |
|
| 29 | 29 | $table->string('name', 50); |
| 30 | 30 | }); |
| 31 | 31 | |