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