mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
5 lines
113 B
Ruby
5 lines
113 B
Ruby
class AddRoleToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :role, :string
|
|
end
|
|
end
|