| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 25 | 
| Code Lines | 18 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | public function up()  | 
            ||
| 15 |     { | 
            ||
| 16 |         Schema::create('events', function (Blueprint $table) { | 
            ||
| 17 |             $table->id('id'); | 
            ||
| 18 | |||
| 19 |             $table->foreignId('event_category_id')->constrained(); | 
            ||
| 20 |             $table->foreignId('venue_id')->constrained(); | 
            ||
| 21 |             $table->foreignId('user_id')->constrained(); | 
            ||
| 22 |             $table->boolean('is_published')->default(0); | 
            ||
| 23 | |||
| 24 |             $table->string('title'); | 
            ||
| 25 |             $table->text('description'); | 
            ||
| 26 |             $table->string('contact_email')->nullable(); | 
            ||
| 27 |             $table->string('website_event_link')->nullable(); | 
            ||
| 28 |             $table->string('facebook_event_link')->nullable(); | 
            ||
| 29 | |||
| 30 |             $table->integer('repeat_type'); | 
            ||
| 31 |             $table->dateTime('repeat_until')->nullable(); | 
            ||
| 32 |             $table->string('repeat_weekly_on')->nullable(); | 
            ||
| 33 |             $table->string('on_monthly_kind')->nullable(); | 
            ||
| 34 |             $table->text('multiple_dates')->nullable(); | 
            ||
| 35 | |||
| 36 |             $table->string('slug'); | 
            ||
| 37 | |||
| 38 | $table->timestamps();  | 
            ||
| 39 | });  | 
            ||
| 52 |