Create course model
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user