Continue adding problem sheets

This commit is contained in:
2023-10-08 15:46:19 +01:00
parent 7344ac3d67
commit f9f4762450
8 changed files with 82 additions and 7 deletions
@@ -0,0 +1,5 @@
class AddSetDateToWorkItem < ActiveRecord::Migration[7.1]
def change
add_column :work_items, :start_time, :datetime
end
end
Generated
+2 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2023_10_07_145018) do
ActiveRecord::Schema[7.1].define(version: 2023_10_08_143146) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -67,6 +67,7 @@ ActiveRecord::Schema[7.1].define(version: 2023_10_07_145018) do
t.datetime "due_date", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "start_time"
t.index ["course_id"], name: "index_work_items_on_course_id"
end