Skip to content

Instantly share code, notes, and snippets.

@sobolevn
Created July 19, 2017 14:10
Show Gist options
  • Select an option

  • Save sobolevn/8ffa734f9b12a82191d55fde9c90c220 to your computer and use it in GitHub Desktop.

Select an option

Save sobolevn/8ffa734f9b12a82191d55fde9c90c220 to your computer and use it in GitHub Desktop.
defmodule EctoSlugs.Repo.Migrations.CreateEctoSlugs.Blog.Article do
use Ecto.Migration
def change do
alter table(:blog_articles) do
add :slug, :string
end
create unique_index(:blog_articles, [:slug]) # should be unique
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment