Current section
Files
Jump to
Current section
Files
priv/repo/migrations/20190303111600_create_artists.exs
defmodule Discogs.Repo.Migrations.CreateArtists do
use Ecto.Migration
def change do
create table :artists do
add :discogs_id, :integer, null: false
add :name, :string, null: false
timestamps()
end
create unique_index(:artists, [:discogs_id])
end
end