Schema::create('house', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->string('description');
$table->string('country');
$table->string('region');
$table->string('street');
$table->string('nomer_doma');
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users');
});