create gists
This commit is contained in:
parent
79a17290d5
commit
43a8412f06
90 changed files with 1777 additions and 2107 deletions
12
priv/repo/migrations/20241026033548_create_gists.exs
Normal file
12
priv/repo/migrations/20241026033548_create_gists.exs
Normal 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
|
||||
7
priv/repo/migrations/20241026035058_remove_links.exs
Normal file
7
priv/repo/migrations/20241026035058_remove_links.exs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
defmodule Zoeyscomputer.Repo.Migrations.RemoveLinks do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
drop table(:links)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue