Skip to content

Commit

Permalink
fixing issue expertiza#1467 - team effort
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Oct 19, 2019
1 parent 8ad597e commit 8637421
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions app/views/assignments/list_submissions.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
<% headers["Participant name"] = "18%" %>
<% end %>
<% headers["Submitted item(s)"] = nil %>

<!--E1970: Added missing header (assignment name) -->
<h1><%= @assignment.name %></h1>

<!--E1877: table id changed -->
<table id ="submissionsTable" class="table table-striped" style="margin-top: 50px">
<thead>
Expand Down
6 changes: 3 additions & 3 deletions db/restoredb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mysqladmin -u root drop -f expertiza_development
mysqladmin -u root create expertiza_development
gunzip -c $1 | mysql -u root expertiza_development
mysqladmin --user=root --password=ubuntu drop -f expertiza_development
mysqladmin --user=root --password=ubuntu create expertiza_development
gunzip -c $1 | mysql --user=root --password=ubuntu expertiza_development

1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@
t.string "status", limit: 255
t.string "unityID", limit: 255
t.string "signup_preference", limit: 255
t.string "feedback", limit: 255
end

create_table "survey_deployments", force: :cascade do |t|
Expand Down

0 comments on commit 8637421

Please sign in to comment.