mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
6 lines
138 B
Ruby
6 lines
138 B
Ruby
class AddOauthTokenToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :oauth_token, :string, null: true
|
|
end
|
|
end
|