Hash : c38aaee2 Author : Thomas de Grivel Date : 2021-11-18T15:25:01
Download
1 2 3 4 5 6 7 8 9 10 11
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