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() + { + // + } +}