diff --git a/app/Models/ConfigCache.php b/app/Models/ConfigCache.php new file mode 100644 index 000000000..4698b1c6b --- /dev/null +++ b/app/Models/ConfigCache.php @@ -0,0 +1,14 @@ +id(); + $table->string('k')->unique()->index(); + $table->text('v')->nullable(); + $table->json('metadata')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('config_cache'); + } +}