tabletop-companion/db/migrate/20240528192517_add_uuid_to_...

8 lines
157 B
Ruby
Raw Permalink Normal View History

2024-05-28 19:40:51 +00:00
# frozen_string_literal: true
class AddUuidToTables < ActiveRecord::Migration[7.1]
def change
add_column :tables, :uuid, :uuid, null: false
end
end