Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('cms_apikey', function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | |||
18 | $table->string('screetkey')->nullable(); |
||
19 | $table->integer('hit')->nullable(); |
||
20 | $table->string('status', 25)->default('active'); |
||
21 | |||
22 | $table->timestamps(); |
||
23 | }); |
||
36 |