From 386c3bff0e3663369fe128c236a64079be097fa9 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 22 Jun 2022 19:16:01 +1000 Subject: [PATCH] Appropriately refresh sending tokens --- ...2_06_22_090547_set_oauth_expiry_column.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2022_06_22_090547_set_oauth_expiry_column.php diff --git a/database/migrations/2022_06_22_090547_set_oauth_expiry_column.php b/database/migrations/2022_06_22_090547_set_oauth_expiry_column.php new file mode 100644 index 000000000000..9ccd5cde296e --- /dev/null +++ b/database/migrations/2022_06_22_090547_set_oauth_expiry_column.php @@ -0,0 +1,30 @@ +datetime('oauth_user_token_expiry')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}