Packages

An open and opinionated DeFi/CeFi/TradFi trading platform using productive & familiar open source libraries and tools for strategy research, execution and operation

Current section

Files

Jump to
prop priv repo migrations 20210406060744_create_history_tokens.exs
Raw

priv/repo/migrations/20210406060744_create_history_tokens.exs

defmodule Prop.Repo.Migrations.CreateHistoryTokens do
use Ecto.Migration
def change do
create table(:tokens) do
add :name, :string
add :symbol, :string
timestamps()
end
create unique_index(:tokens, [:name, :symbol])
end
end