Create course model

This commit is contained in:
2023-09-29 18:18:03 +01:00
parent a496965d81
commit 38f48d1736
5 changed files with 69 additions and 0 deletions
@@ -0,0 +1,12 @@
class CreateCourses < ActiveRecord::Migration[7.0]
def change
create_table :courses do |t|
t.string :title
t.string :unit_code
t.integer :toggl_project
t.jsonb :panopto_folders
t.timestamps
end
end
end