Add lecture kinds

This commit is contained in:
2023-10-02 16:37:52 +01:00
parent 9a5116f29e
commit fe15365524
4 changed files with 18 additions and 3 deletions
@@ -0,0 +1,5 @@
class AddLectureKind < ActiveRecord::Migration[7.0]
def change
add_column :lectures, :kind, :integer, default: 0
end
end