Add basic deadline to sections index

This commit is contained in:
Charlotte Van Petegem 2025-05-25 21:54:34 +02:00
parent 782355322e
commit f4106b9fb6
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
15 changed files with 175 additions and 1 deletions

9
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_05_15_124656) do
ActiveRecord::Schema[8.0].define(version: 2025_05_25_115606) do
create_table "active_storage_attachments", force: :cascade do |t|
t.string "name", null: false
t.string "record_type", null: false
@ -47,6 +47,13 @@ ActiveRecord::Schema[8.0].define(version: 2025_05_15_124656) do
t.index ["question_id"], name: "index_answers_on_question_id"
end
create_table "extensions", force: :cascade do |t|
t.text "reason"
t.boolean "confirmed"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "questions", force: :cascade do |t|
t.integer "section_id", null: false
t.text "text", null: false