Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('updates', function (Blueprint $table) { |
||
15 | $table->increments('id'); |
||
16 | $table->string('title'); |
||
17 | $table->string('version', 10); |
||
18 | $table->string('type'); |
||
19 | $table->text('description'); |
||
20 | $table->integer('downloads'); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
23 | |||
24 | Schema::create('customers', function (Blueprint $table) { |
||
25 | $table->increments('id'); |
||
26 | $table->string('name'); |
||
27 | $table->string('purchaseKey'); |
||
28 | $table->timestamp('support_ends'); |
||
29 | $table->string('email')->unique(); |
||
30 | $table->timestamps(); |
||
31 | }); |
||
32 | } |
||
33 | |||
43 |