diff --git a/database/migrations/2021_06_15_014319_create_chat_table.php b/database/migrations/2021_06_15_014319_create_chat_table.php new file mode 100644 index 0000000..95cfe71 --- /dev/null +++ b/database/migrations/2021_06_15_014319_create_chat_table.php @@ -0,0 +1,31 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('chat'); + } +}