Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function run() |
||
12 | { |
||
13 | $tableName = 'users'; |
||
14 | Capsule::schema()->dropIfExists($tableName); |
||
15 | Capsule::schema()->create($tableName, function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->string('name'); |
||
18 | $table->string('surname'); |
||
19 | $table->string('email'); |
||
20 | $table->tinyInteger('age'); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
23 | } |
||
24 | |||
25 | } |