Packages

MySensors is an open source hardware and software community focusing on do-it-yourself home automation and Internet of Things.

Current section

Files

Jump to
my_sensors priv repo migrations 20171218042721_add_sensors_table.exs
Raw

priv/repo/migrations/20171218042721_add_sensors_table.exs

defmodule MySensors.Repo.Migrations.AddSensorsTable do
use Ecto.Migration
def change do
create table("sensors") do
add :node_id, references("nodes", on_delete: :delete_all)
add :child_sensor_id, :integer
add :type, :string
timestamps()
end
end
end