zoeys.computer/priv/repo/migrations/20241026033548_create_gists.exs
2024-10-26 15:01:33 -04:00

12 lines
228 B
Elixir

defmodule Zoeyscomputer.Repo.Migrations.CreateGists do
use Ecto.Migration
def change do
create table(:gists) do
add :code, :string
add :lang, :string
timestamps(type: :utc_datetime)
end
end
end