Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create(config('plugin.tenant'), function (\Illuminate\Database\Schema\Blueprint $blueprint) { |
||
16 | $blueprint->increments('id'); |
||
17 | $blueprint->string('addon_key'); |
||
18 | $blueprint->string('client_key', 36); |
||
19 | $blueprint->string('public_key')->nullable(); |
||
20 | $blueprint->string('shared_secret'); |
||
21 | $blueprint->string('server_version', 20); |
||
22 | $blueprint->string('plugin_version', 20); |
||
23 | $blueprint->string('base_url'); |
||
24 | $blueprint->string('product_type', 10); |
||
25 | $blueprint->text('description'); |
||
26 | $blueprint->string('event_type', 20); |
||
27 | $blueprint->boolean('is_dummy')->default(false); |
||
28 | |||
29 | $blueprint->rememberToken(); |
||
30 | $blueprint->timestamps(); |
||
31 | $blueprint->softDeletes(); |
||
32 | }); |
||
45 |