mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
29 lines
535 B
YAML
29 lines
535 B
YAML
# Nested set mixins
|
|
|
|
<% (1..10).each do |counter| %>
|
|
set_<%= counter %>:
|
|
id: <%= counter+3000 %>
|
|
<% end %>
|
|
|
|
# Big old set
|
|
<%
|
|
[[4001, 0, 1, 20],
|
|
[4002, 4001, 2, 7],
|
|
[4003, 4002, 3, 4],
|
|
[4004, 4002, 5, 6],
|
|
[4005, 4001, 14, 13],
|
|
[4006, 4005, 9, 10],
|
|
[4007, 4005, 11, 12],
|
|
[4008, 4001, 8, 19],
|
|
[4009, 4008, 15, 16],
|
|
[4010, 4008, 17, 18]].each do |set| %>
|
|
tree_<%= set[0] %>:
|
|
id: <%= set[0]%>
|
|
parent_id: <%= set[1]%>
|
|
type: NestedSetWithStringScope
|
|
lft: <%= set[2]%>
|
|
rgt: <%= set[3]%>
|
|
root_id: 42
|
|
|
|
<% end %>
|
|
|