8 lines
157 B
Ruby
8 lines
157 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddUuidToTables < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
add_column :tables, :uuid, :uuid, null: false
|
||
|
end
|
||
|
end
|