Skip to content

Commit

Permalink
add link to next section/task to be done in the MVP dwyl/app#234
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Nov 13, 2019
2 parents 23f0cdf + 8e3783e commit 8d55476
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,11 +462,16 @@ end
```

Now run the `mix ecto.migrate` script.
The Entity Relationship Diagram (ERD)
should now look like this:

![app-er-diagram-with-item_tags](https://user-images.githubusercontent.com/194400/68804955-c62eca80-065a-11ea-888b-9391154aceda.png)


# _Next_


Build the basic _capture_ stage:
https://github.com/dwyl/app/issues/234


<br /><br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ defmodule App.Repo.Migrations.CreateItemTagsAssociation do
def change do
create table(:item_tags) do
add :item_id, references(:items)
<<<<<<< HEAD
add :tag_id, references(:tags)
=======
add :Tag_id, references(:tags)
>>>>>>> 8e3783e8f63177cbc789b7ed9094165e646b50d8

timestamps()
end
Expand Down

0 comments on commit 8d55476

Please sign in to comment.