mirror of
https://github.com/internetee/registry.git
synced 2025-06-02 02:38:35 +02:00
5 lines
142 B
Ruby
5 lines
142 B
Ruby
class AddColumnToUser < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :uuid, :uuid, default: 'gen_random_uuid()'
|
|
end
|
|
end
|