mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
9 lines
184 B
Ruby
9 lines
184 B
Ruby
class CreateCredentials < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :credentials, id: :uuid do |t|
|
|
t.text :encrypted_value
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|