mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
7 lines
248 B
Ruby
7 lines
248 B
Ruby
class AddPatreonTokenToUsers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :users, :patreon_access_token, :text
|
|
add_column :users, :patreon_refresh_token, :text
|
|
add_column :users, :patreon_token_expires_at, :datetime
|
|
end
|
|
end
|