create gists

This commit is contained in:
zack 2024-10-26 15:01:33 -04:00
parent 79a17290d5
commit 43a8412f06
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
90 changed files with 1777 additions and 2107 deletions

View file

@ -0,0 +1,12 @@
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

View file

@ -0,0 +1,7 @@
defmodule Zoeyscomputer.Repo.Migrations.RemoveLinks do
use Ecto.Migration
def change do
drop table(:links)
end
end