mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 19:07:29 +00:00
5 lines
136 B
Ruby
5 lines
136 B
Ruby
class AddInvitationtokenToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :invitation_token, :string
|
|
end
|
|
end
|