QR codes generation
This commit is contained in:
5
db/migrate/20251120100813_add_qrcode_to_contestant.rb
Normal file
5
db/migrate/20251120100813_add_qrcode_to_contestant.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddQrcodeToContestant < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contestants, :qrcode, :string
|
||||
end
|
||||
end
|
||||
3
db/schema.rb
generated
3
db/schema.rb
generated
@@ -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_11_18_074914) do
|
||||
ActiveRecord::Schema[8.0].define(version: 2025_11_20_100813) do
|
||||
create_table "active_storage_attachments", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "record_type", null: false
|
||||
@@ -83,6 +83,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_11_18_074914) do
|
||||
t.string "display_time"
|
||||
t.integer "time_seconds"
|
||||
t.string "projected_time"
|
||||
t.string "qrcode"
|
||||
t.index ["contest_id"], name: "index_contestants_on_contest_id"
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user