Edit

kmx.io/kmxgit/priv/repo/migrations/20211116154852_create_organisations.exs

Branch :

  • priv/repo/migrations/20211116154852_create_organisations.exs
  • defmodule Kmxgit.Repo.Migrations.CreateOrganisations do
      use Ecto.Migration
    
      def change do
        create table(:organisations) do
          add :description, :string
          add :name, :string
          timestamps()
        end
      end
    end