View Source Upgrading to v0.1.0-rc.1
Bump your deps
Update Beacon to the specific release candidate version:
[
{:beacon, "~> 0.1.0-rc.1"}
]
Remember to keep the option override: true
if running BeaconLiveAdmin in the same project.
Update Beacon tables
mix ecto.gen.migration update_beacon_v002
Within the migration module:
use Ecto.Migration
def up, do: Beacon.Migration.up()
def down, do: Beacon.Migration.down()