Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rpassas committed Jan 9, 2024
1 parent 50573a7 commit 3387adb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/inferno/db/migrations/010_add_validator_sessions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
column :created_at, DateTime, null: false
column :updated_at, DateTime, null: false
index [:validator_index]
index [test_suite_id]
index [:test_suite_id]
end
end
end
6 changes: 3 additions & 3 deletions lib/inferno/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
primary_key [:id]
end

create_table(:validator_sessions) do
create_table(:validator_sessions, :ignore_index_errors=>true) do
String :id, :size=>36, :null=>false
String :validator_session_id, :size=>255, :null=>false
String :test_suite_id, :size=>255, :null=>false
Expand All @@ -33,9 +33,9 @@
DateTime :updated_at, :null=>false

primary_key [:id]

index [:validator_index]

index [:test_suite_id]
index [:validator_index]
end

create_table(:session_data, :ignore_index_errors=>true) do
Expand Down

0 comments on commit 3387adb

Please sign in to comment.