Migrate database and models for study-group-based authorization

This commit is contained in:
Sebastian Serth
2022-09-20 16:14:06 +02:00
committed by Sebastian Serth
parent ec4c6207f0
commit 04ed45ea73
9 changed files with 79 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
# frozen_string_literal: true
class RemoveRoleFromUsers < ActiveRecord::Migration[6.1]
def change
remove_column :external_users, :role
remove_column :internal_users, :role
end
end