Skip to content
Open

#1 #109

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ideavimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
set surround
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AlterInsuranceFromHouseProperties extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('house_properties', function (Blueprint $table) {
$table->string('insurance')->change();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('house_properties', function (Blueprint $table) {
$table->dropColumn('insurance');
});
}
}
6 changes: 2 additions & 4 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10947,7 +10947,6 @@ __webpack_require__.r(__webpack_exports__);
//
//
//
//


/* harmony default export */ __webpack_exports__["default"] = ({
Expand Down Expand Up @@ -67021,9 +67020,8 @@ var render = function() {
[
_c("v-text-field", {
attrs: {
count: 10,
type: "number",
prefix: "¥",
count: 200,
rules: _vm.rule_limit200,
label: "保険等"
},
model: {
Expand Down
5 changes: 2 additions & 3 deletions resources/js/components/organism/corp/CorpRegister.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,8 @@
<v-col cols="6">
<v-text-field
v-model="property.insurance"
:count="10"
type="number"
prefix="¥"
:count="200"
:rules="rule_limit200"
label="保険等"
></v-text-field>
</v-col>
Expand Down