Skip to content
Snippets Groups Projects
Unverified Commit 5d78083c authored by Sébastien Gaya's avatar Sébastien Gaya Committed by GitHub
Browse files

Merge pull request #724 from noesya/clean/issue-710

Nettoyage de données (featured image, summary, journal)
parents 6aa9a79e b34d36c1
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,8 @@ issn: "<%= @about.journal.issn %>"
keywords: >
<%= @about.keywords %>
date: "<%= @about.published_at.iso8601 %>"
<%= render 'admin/communication/unsplash/static' %>
<%= render 'admin/application/featured_image/static' %>
<%= render 'admin/application/meta_description/static' %>
<%= render 'admin/application/summary/static' %>
---
<%= prepare_html_for_static @about.text, @about.university %>
class RemoveWebsiteAttributesFromResearchJournals < ActiveRecord::Migration[7.0]
def change
remove_column :research_journals, :access_token, :string
remove_column :research_journals, :repository, :string
end
end
class AddSummaryToResearchModels < ActiveRecord::Migration[7.0]
def change
add_column :research_journals, :summary, :text
add_column :research_journal_volumes, :summary, :text
end
end
......@@ -611,6 +611,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_12_151136) do
t.boolean "published", default: false
t.text "text"
t.text "featured_image_credit"
t.text "summary"
t.index ["research_journal_id"], name: "index_research_journal_volumes_on_research_journal_id"
t.index ["university_id"], name: "index_research_journal_volumes_on_university_id"
end
......@@ -621,9 +622,8 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_12_151136) do
t.text "meta_description"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "access_token"
t.string "repository"
t.string "issn"
t.text "summary"
t.index ["university_id"], name: "index_research_journals_on_university_id"
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment