Add default OAuths (#259)

This commit is contained in:
Riccardo Graziosi
2024-01-22 14:45:48 +01:00
committed by GitHub
parent 0828c9c879
commit 653e139a9e
32 changed files with 512 additions and 213 deletions

View File

@@ -0,0 +1,5 @@
class RemoveNotNullConstraintToOAuthsTenant < ActiveRecord::Migration[6.1]
def change
change_column_null :o_auths, :tenant_id, true
end
end

View File

@@ -0,0 +1,5 @@
class AddOauthTokenToUsers < ActiveRecord::Migration[6.1]
def change
add_column :users, :oauth_token, :string, null: true
end
end