diff --git a/database/migrations/2024_08_19_120520_add_cache_to_blueprint_table.php b/database/migrations/2024_08_19_120520_add_cache_to_blueprint_table.php new file mode 100644 index 0000000..e14c52e --- /dev/null +++ b/database/migrations/2024_08_19_120520_add_cache_to_blueprint_table.php @@ -0,0 +1,41 @@ +string('cache')->nullable(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('blueprint', function (Blueprint $table) { + $table->dropColumn('cache'); + }); + } +} \ No newline at end of file