Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('artificer_users', function(Blueprint $table) |
||
16 | { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name'); |
||
19 | $table->string('username'); |
||
20 | $table->string('role'); |
||
21 | $table->string('email')->unique(); |
||
22 | $table->string('password', 60); |
||
23 | $table->rememberToken(); |
||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | } |
||
27 | |||
38 |