mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 02:47:27 +00:00
5 lines
150 B
Ruby
5 lines
150 B
Ruby
class AddStatusToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :organization_users, :status, :string, default: 'invited'
|
|
end
|
|
end
|