| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('testimonials', function (Blueprint $table) { |
||
| 17 | $table->id(); |
||
| 18 | $table->string('code')->unique(); |
||
| 19 | $table->string('name'); |
||
| 20 | $table->string('image')->nullable(); |
||
| 21 | $table->string('email')->unique(); |
||
| 22 | $table->bigInteger('contact')->nullable(); |
||
| 23 | $table->string('designation')->nullable(); |
||
| 24 | $table->string('company')->nullable(); |
||
| 25 | $table->text('body'); |
||
| 26 | $table->integer('rating')->default(5); |
||
| 27 | $table->bigInteger('position')->default(1); |
||
| 28 | $table->boolean('approve')->default(1); |
||
| 29 | $table->timestamps(); |
||
| 30 | }); |
||
| 43 |