@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function createUser() |
| 27 | 27 | { |
| 28 | - if (! Capsule::schema()->hasTable('users')) { |
|
| 29 | - Capsule::schema()->create('users', function ($table) { |
|
| 28 | + if (!Capsule::schema()->hasTable('users')) { |
|
| 29 | + Capsule::schema()->create('users', function($table) { |
|
| 30 | 30 | $table->increments('id'); |
| 31 | 31 | $table->string('firstname'); |
| 32 | 32 | $table->string('lastname'); |
@@ -43,8 +43,8 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function createKeyword() |
| 45 | 45 | { |
| 46 | - if (! Capsule::schema()->hasTable('keywords')) { |
|
| 47 | - Capsule::schema()->create('keywords', function ($table) { |
|
| 46 | + if (!Capsule::schema()->hasTable('keywords')) { |
|
| 47 | + Capsule::schema()->create('keywords', function($table) { |
|
| 48 | 48 | $table->increments('id'); |
| 49 | 49 | $table->integer('emoji_id'); |
| 50 | 50 | $table->string('keyword_name'); |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function createCategory() |
| 60 | 60 | { |
| 61 | - if (! Capsule::schema()->hasTable('categories')) { |
|
| 62 | - Capsule::schema()->create('categories', function ($table) { |
|
| 61 | + if (!Capsule::schema()->hasTable('categories')) { |
|
| 62 | + Capsule::schema()->create('categories', function($table) { |
|
| 63 | 63 | $table->increments('id'); |
| 64 | 64 | $table->string('category_name'); |
| 65 | 65 | $table->timestamps(); |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | public function createEmoji() |
| 75 | 75 | { |
| 76 | - if (! Capsule::schema()->hasTable('categories')) { |
|
| 77 | - Capsule::schema()->create('emojis', function ($table) { |
|
| 76 | + if (!Capsule::schema()->hasTable('categories')) { |
|
| 77 | + Capsule::schema()->create('emojis', function($table) { |
|
| 78 | 78 | $table->increments('id'); |
| 79 | 79 | $table->string('name'); |
| 80 | 80 | $table->string('char'); |