Sha256: e630b5eeec7cc800a879dfa6317eaa923b9e3cb12f8ae25877da99b1139bace5
Contents?: true
Size: 279 Bytes
Versions: 14
Compression:
Stored size: 279 Bytes
Contents
Sequel.migration do up do alter_table(:triggered_webhooks) do add_column(:uuid, String) add_index [:uuid], name: "triggered_webhooks_uuid", unique: true end end down do alter_table(:triggered_webhooks) do drop_column(:uuid) end end end
Version data entries
14 entries across 14 versions & 1 rubygems