bigInteger('id', true)->unsigned();
$table->string('meeting_id', 191);
$table->integer('user_id')->nullable();
$table->string('owner_id', 191);
$table->string('meeting_title')->nullable();
$table->dateTime('start_time');
$table->string('zoom_url', 191);
$table->string('link_by')->nullable();
$table->integer('course_id')->nullable();
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('meetings');
}
}