Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | $this->getSchema()->create('user_recoveries', function($table) { |
||
18 | $table->increments('id'); |
||
19 | $table->integer('user_id')->unsigned(); |
||
20 | $table->string('token', 128)->nullable(); |
||
21 | $table->boolean('archive')->default(false); |
||
22 | $table->timestamps(); |
||
23 | }); |
||
24 | parent::up(); |
||
25 | } |
||
42 | } |