I hereby claim:
- I am neslinesli93 on github.
- I am neslinesli93 (https://keybase.io/neslinesli93) on keybase.
- I have a public key whose fingerprint is 535B 9D19 B2E2 5EB0 BEF2 274F 2A9C 2A40 A67E CE7A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| create table "Tickers_Data" | |
| ( | |
| ticker integer not null | |
| constraint tickers_data_ticker_foreign | |
| references "Tickers", | |
| time date not null, | |
| low double precision not null, | |
| high double precision not null, | |
| open double precision not null, | |
| close double precision not null, |
WARNING! 4 of your dependencies have not yet been upgraded to support Elm 0.19.
Here are some common upgrade steps that you will need to do manually:
| Elm 0.18 | Elm 0.19 | |
|---|---|---|
| Change the main Model | 2m52s | 4s |
| Change the main Msg and Update | 2m34s | 4s |
| Change the main View | 10s | 1s |
| Elm 0.18 | Elm 0.19 | |
|---|---|---|
| No debug | 3m54s | 7s |
| Debug enabled | 4m10s | 5s |
| import { Socket } from "phoenix"; | |
| import LiveSocket from "phoenix_live_view"; | |
| let liveSocket = new LiveSocket("/live", Socket); | |
| liveSocket.connect(); |
| defp deps do | |
| [ | |
| # ...other deps | |
| {:phoenix_live_view, "~> 0.3.0"} | |
| ] | |
| end |
| def controller do | |
| quote do | |
| # ...other import/alias directives | |
| import Phoenix.LiveView.Controller | |
| end | |
| end | |
| def view do | |
| quote do | |
| # ...other import/alias directives |