fix for gemfile, merge conflicts, test fixes for ruby 3

This commit is contained in:
Kyle Drake 2022-11-05 12:46:43 -05:00
commit e7eb6d8a2d
36 changed files with 785 additions and 764 deletions

View file

@ -1,10 +1,10 @@
Sequel.migration do
change do
alter_table(:events) { add_index :created_at }
alter_table(:sites) { add_index :updated_at }
#alter_table(:events) { add_index :created_at }
alter_table(:sites) { add_index :updated_at }
alter_table(:comment_likes) { add_index :comment_id }
alter_table(:comment_likes) { add_index :actioning_site_id }
alter_table(:sites_tags) { add_index :tag_id }
alter_table(:tags) { add_index :name }
end
end
end