ToolJet/db/migrate/20210415070857_create_credentials.rb

10 lines
184 B
Ruby
Raw Normal View History

2021-04-15 07:39:45 +00:00
class CreateCredentials < ActiveRecord::Migration[6.1]
def change
create_table :credentials, id: :uuid do |t|
t.text :encrypted_value
t.timestamps
end
end
end