| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 17 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 16 | public function up()  | 
            ||
| 17 |     { | 
            ||
| 18 |         Schema::create(config('rinvex.bookings.tables.ticketable_bookings'), function (Blueprint $table) { | 
            ||
| 19 | // Columns  | 
            ||
| 20 |             $table->increments('id'); | 
            ||
| 21 |             $table->integer('ticket_id')->unsigned(); | 
            ||
| 22 |             $table->integer('customer_id')->unsigned(); | 
            ||
| 23 |             $table->decimal('paid')->default('0.00'); | 
            ||
| 24 |             $table->string('currency', 3)->nullable(); | 
            ||
| 25 |             $table->boolean('is_approved')->default(false); | 
            ||
| 26 |             $table->boolean('is_confirmed')->default(false); | 
            ||
| 27 |             $table->boolean('is_attended')->default(false); | 
            ||
| 28 |             $table->text('notes')->nullable(); | 
            ||
| 29 | $table->timestamps();  | 
            ||
| 30 | $table->softDeletes();  | 
            ||
| 31 | });  | 
            ||
| 32 | }  | 
            ||
| 33 | |||
| 44 |