1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/db/migrate/20230728072726_add_ancestry_to_spaces.rb

10 lines
320 B
Ruby
Raw Normal View History

2023-07-28 16:16:44 +02:00
class AddAncestryToSpaces < ActiveRecord::Migration[7.0]
def change
add_column :spaces, :ancestry, :string, collation: 'C'
Space.update_all(ancestry: '/')
change_column_null(:spaces, :ancestry, false)
add_column :spaces, :ancestry_depth, :integer, default: 0
add_index :spaces, :ancestry
end
end