blob: 151d74559d4309898e5560f6b4f57a4c304d9b81 (
plain)
1
2
3
4
5
6
7
8
9
|
class CreateAgents < ActiveRecord::Migration
def change
create_table :agents, id: :uuid, default: 'uuid_generate_v4()' do |t|
t.string :hostname
t.timestamps null: false
end
end
end
|