# frozen_string_literal: true
class AddUuidToTables < ActiveRecord::Migration[7.1]
def change
add_column :tables, :uuid, :uuid, null: false
end