Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | if (!Schema::hasTable('laravel_sms_log')) { |
||
17 | |||
18 | Schema::create('laravel_sms_log', function (Blueprint $table) { |
||
19 | $table->increments('id'); |
||
20 | $table->string('mobile'); |
||
21 | $table->string('data'); |
||
22 | $table->tinyInteger('is_sent')->default(0); |
||
23 | $table->text('result')->nullable(); |
||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | } |
||
27 | } |
||
28 | |||
39 |