<?php

use Illuminate\Support\Carbon;
use Illuminate\Database\Seeder;

class UserProfilesTableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        DB::table("user_profiles")->insert([
            "user_id" => 1,
            "profile_link" => "john.doe",
            "technoblog_email" => "john.doe@technoblog.com",
            "facebook_link" => "john.doe",
            "instagram_link" => "johndoe",
            "twitter_link" => "johndoe",
            "youtube_link" => "johndoe",
            "skype_link" => "j.doe",
            "created_at" => Carbon::now()
        ]);
    }
}
