mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-14 05:41:00 +00:00
6bcfffa1ee
- Use ruby 2.7.7 as it fixed startup issues - Update gems - Remove depr. from puma startup - Make entry.sh dir-agnostic Fix tests: - Use apparition - Update migrations to use new syntax - Some other minor changes
6 lines
149 B
Ruby
6 lines
149 B
Ruby
class AddIndexToForumers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :forumers, :forum_id
|
|
add_index :forumers, :group_id
|
|
end
|
|
end
|