Initial commit

This commit is contained in:
2022-05-23 15:57:15 +02:00
commit 5608d2e5ec
99 changed files with 5636 additions and 0 deletions

View File

@ -0,0 +1,12 @@
defmodule SomethingErlang.Repo.Migrations.CreateThreads do
use Ecto.Migration
def change do
create table(:threads) do
add :title, :string
add :thread_id, :integer
timestamps()
end
end
end