Skip to content

Commit

Permalink
fix type bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneHaensel committed Jul 9, 2024
1 parent fd8ebe8 commit 4f4a5b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1169,8 +1169,8 @@
end

create_table "oauth_access_grants", force: :cascade do |t|
t.integer "resource_owner_id", null: false
t.integer "application_id", null: false
t.bigint "resource_owner_id", null: false
t.bigint "application_id", null: false
t.string "token", null: false
t.integer "expires_in", null: false
t.text "redirect_uri", null: false
Expand All @@ -1185,8 +1185,8 @@
end

create_table "oauth_access_tokens", force: :cascade do |t|
t.integer "resource_owner_id"
t.integer "application_id", null: false
t.bigint "resource_owner_id"
t.bigint "application_id", null: false
t.string "token", null: false
t.string "refresh_token"
t.integer "expires_in"
Expand Down

0 comments on commit 4f4a5b0

Please sign in to comment.