Postgrex.Extension and Ecto.Type for PostgreSQL isn module
Go to file
Martin Frost 50e4b6adca Fix test_helper to run properly on CI 2017-02-25 10:24:45 +01:00
config Get rid of ex_doc warning when running tests 2017-01-22 22:23:06 +01:00
lib Get rid of ex_doc warning when running tests 2017-01-22 22:23:06 +01:00
test Fix test_helper to run properly on CI 2017-02-25 10:24:45 +01:00
.gitignore Ignore emacs *~ temp files 2016-01-10 12:46:28 +01:00
README.md Tidy up Installation instructions 2016-01-10 13:31:17 +01:00
mix.exs Fix Elixir 1.4 warnings 2017-01-22 22:20:57 +01:00
mix.lock Update deps 2017-02-25 10:24:29 +01:00

README.md

ISN

Build Status

ISN adds a Postgrex.Extension and Ecto.Type definitions for the datatypes defined in the isn PostgreSQL module.

Usage

Ecto migrations

defmodule MyApp.Repo.Migrations.CreateBook do
  use Ecto.Migration

  def change do
    create table(:books) do
      add :isbn, :isbn13
      # other fields
    end
  end
end

Ecto Models

defmodule MyApp.Book do
  use MyApp.Web, :model

  schema "books" do
    field :isbn, ISN.ISBN13
    # other fields
  end
end

Installation

Add the package to your Mixfile

defp deps do
  [{:isn, "~> 1.0"}]
end

Add the isn extension to your database

mix do isn.gen.migration, ecto.migrate

Register the postgrex extension in your Repo config

config :books, MyApp.Repo,
  adapter: Ecto.Adapters.Postgres,
  extensions: [{ISN, []}]

Defined types

ISN adds the following ecto and corresponding postgrex types:

Ecto.Type Postgrex type
ISN.ISBN :isbn
ISN.ISBN13 :isbn13
ISN.ISMN :ismn
ISN.ISMN13 :ismn13
ISN.ISSN :issn
ISN.ISSN13 :issn13
ISN.EAN13 :ean13
ISN.UPC :upc