Add contest param for offline form participation
Some checks failed
CI / scan_ruby (push) Successful in 20s
CI / scan_js (push) Successful in 15s
CI / lint (push) Failing after 13s
CI / test (push) Successful in 38s

This commit is contained in:
sto
2025-10-30 10:30:32 +01:00
parent 35ad7da355
commit aea001cdf6
9 changed files with 30 additions and 3 deletions

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_10_29_155116) do
ActiveRecord::Schema[8.0].define(version: 2025_10_30_092221) do
create_table "active_storage_attachments", force: :cascade do |t|
t.string "name", null: false
t.string "record_type", null: false
@@ -92,6 +92,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_10_29_155116) do
t.string "slug"
t.string "lang", default: "en"
t.boolean "public", default: false
t.boolean "offline_form", default: false
t.index ["slug"], name: "index_contests_on_slug", unique: true
t.index ["user_id"], name: "index_contests_on_user_id"
end