mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
Add default OAuths (#259)
This commit is contained in:
committed by
GitHub
parent
0828c9c879
commit
653e139a9e
@@ -0,0 +1,5 @@
|
||||
class RemoveNotNullConstraintToOAuthsTenant < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
change_column_null :o_auths, :tenant_id, true
|
||||
end
|
||||
end
|
||||
5
db/migrate/20240117112502_add_oauth_token_to_users.rb
Normal file
5
db/migrate/20240117112502_add_oauth_token_to_users.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddOauthTokenToUsers < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :users, :oauth_token, :string, null: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user