Add toggl scraping
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddAssociatedTogglEntryToLecture < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :lectures, :associated_toggl_entry, :integer, null: true
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class ChangeTogglEntryIdToString < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
change_column :lectures, :associated_toggl_entry, :string, null: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user