1
0
grillo-ruby-neo4j-challenge/db/neo4j/migrate/20230524023145_create_metric.rb

12 lines
182 B
Ruby

class CreateMetric < ActiveGraph::Migrations::Base
disable_transactions!
def up
add_constraint :Metric, :uuid
end
def down
drop_constraint :Metric, :uuid
end
end