DEV: Apply syntax_tree formatting to db/*

This commit is contained in:
David Taylor
2023-01-09 11:59:41 +00:00
parent cb932d6ee1
commit b0fda61a8e
467 changed files with 1682 additions and 1624 deletions
@@ -3,11 +3,11 @@
class AddTimeReadToUserVisits < ActiveRecord::Migration[5.1]
def up
add_column :user_visits, :time_read, :integer, null: false, default: 0 # in seconds
add_index :user_visits, [:user_id, :visited_at, :time_read]
add_index :user_visits, %i[user_id visited_at time_read]
end
def down
remove_index :user_visits, [:user_id, :visited_at, :time_read]
remove_index :user_visits, %i[user_id visited_at time_read]
remove_column :user_visits, :time_read
end
end