add program return button (#314)

This commit is contained in:
nora
2025-06-13 13:48:21 -04:00
committed by GitHub
parent fe2caf3dc9
commit 8da145d623
5 changed files with 17 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
class AddReturnDataToSignInTokens < ActiveRecord::Migration[8.0]
def change
add_column :sign_in_tokens, :return_data, :jsonb
end
end

3
db/schema.rb generated
View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.0].define(version: 2025_06_11_071124) do
ActiveRecord::Schema[8.0].define(version: 2025_06_13_163710) do
create_schema "pganalyze"
# These are extensions that must be enabled in order to support this database
@@ -464,6 +464,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_06_11_071124) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "continue_param"
t.jsonb "return_data"
t.index ["token"], name: "index_sign_in_tokens_on_token"
t.index ["user_id"], name: "index_sign_in_tokens_on_user_id"
end