diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-15 13:00:42 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-15 13:00:42 -0600 |
commit | 3cf9f4a364ac91cca30799c8379a682139425e71 (patch) | |
tree | db94f64634e0a840b0a5d1eeef43460ef4e8dd21 /priv/repo/migrations/20220415015055_create_post_votes.exs | |
parent | db7c2321cd0af59f9e810e84c7d4eb83ec416458 (diff) | |
download | aggiedit-3cf9f4a364ac91cca30799c8379a682139425e71.tar.gz aggiedit-3cf9f4a364ac91cca30799c8379a682139425e71.zip |
Add comments and vote models; pub/sub voting on posts
Diffstat (limited to 'priv/repo/migrations/20220415015055_create_post_votes.exs')
-rw-r--r-- | priv/repo/migrations/20220415015055_create_post_votes.exs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/priv/repo/migrations/20220415015055_create_post_votes.exs b/priv/repo/migrations/20220415015055_create_post_votes.exs new file mode 100644 index 0000000..444a89c --- /dev/null +++ b/priv/repo/migrations/20220415015055_create_post_votes.exs @@ -0,0 +1,15 @@ +defmodule Aggiedit.Repo.Migrations.CreatePostVotes do + use Ecto.Migration + + def change do + create table(:post_votes) do + add :is_up, :boolean + add :user_id, references(:users, on_delete: :nothing) + add :post_id, references(:posts, on_delete: :delete_all) + + timestamps() + end + + create unique_index(:post_votes, [:user_id, :post_id]) + end +end |