Blog: Blog Content
Mix.install([
{:jason, "~> 1.4"},
{:kino, "~> 0.9", override: true},
{:youtube, github: "brooklinjazz/youtube"},
{:hidden_cell, github: "brooklinjazz/hidden_cell"}
])
Navigation
Home Report An Issue Book Search: Book Content Book Search: DeploymentBlog: Blog Content
In your Blog project, you’re going to separate each blog posts content field into a separate PostContent resource. PostContent will have a one-to-one relationship with your blog Post resource.
Each PostContent record should store a full_text field and a foreign key to a post record.
classDiagram
class PostContent {
full_text: :text
post_id: :id
}
Requirements
Ensure you:
-
Create a
post_contenttable in a migration. -
Create a
PostContentschema. -
Can create a
Postwith associatedPostContentthrough your existing post form. -
Can update a
Postwith associatedPostContentthrough your existing post form. - Display the post content on the blog post show page.
You do not need to remove the existing :content field on the blog post. See the bonus exercise below.
Bonus: Migrate The :content Field Into PostContent.
Create a migration that will create an associated PostContent record for every existing Post record using their :content field. Then in the same migration, remove the :content field from every post.
This simulates a real-world production system where you would likely need to preserve existing data.
Make sure you also update any places in your codebase using the :content field to avoid errors. For example you likely need to fix your seed files, tests, templates, etc.
Commit Your Progress
DockYard Academy now recommends you use the latest Release rather than forking or cloning our repository.
Run git status to ensure there are no undesirable changes.
Then run the following in your command line from the curriculum folder to commit your progress.
$ git add .
$ git commit -m "finish Blog: Blog Content exercise"
$ git push
We’re proud to offer our open-source curriculum free of charge for anyone to learn from at their own pace.
We also offer a paid course where you can learn from an instructor alongside a cohort of your peers. We will accept applications for the June-August 2023 cohort soon.