diff --git a/database/migrations/2020_12_14_114722_task_fields.php b/database/migrations/2020_12_14_114722_task_fields.php new file mode 100644 index 000000000000..bcb861986bf0 --- /dev/null +++ b/database/migrations/2020_12_14_114722_task_fields.php @@ -0,0 +1,36 @@ +boolean('is_date_based')->default(false); + }); + + Schema::table('companies', function (Blueprint $table) { + $table->boolean('default_task_is_date_based')->default(false); + }); + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}