diff --git a/database/migrations/2022_02_01_235540_create_features_table.php b/database/migrations/2022_02_01_235540_create_features_table.php index c7ef6a6..f45cc73 100644 --- a/database/migrations/2022_02_01_235540_create_features_table.php +++ b/database/migrations/2022_02_01_235540_create_features_table.php @@ -16,6 +16,7 @@ public function up() $table->id(); $table->string('name'); $table->boolean('consumable'); + $table->boolean('quote')->default(false); $table->unsignedInteger('periodicity')->nullable(); $table->string('periodicity_type')->nullable(); $table->softDeletes();