Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('users', function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->string('identity_id')->unique(); |
||
18 | $table->string('email'); |
||
19 | $table->boolean('email_verified'); |
||
20 | $table->string('name'); |
||
21 | $table->string('gender'); |
||
22 | $table->string('username'); |
||
23 | $table->string('avatar'); |
||
24 | $table->string('provider'); |
||
25 | $table->timestamps(); |
||
26 | }); |
||
38 |