mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 10:57:20 +00:00
10 lines
184 B
Ruby
10 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
|