farmbot_os/farmbot_core/priv/asset/migrations/20180621184803_add_sync_cmd...

13 lines
251 B
Elixir

defmodule Farmbot.Asset.Repo.Migrations.AddSyncCmdTable do
use Ecto.Migration
def change do
create table("sync_cmds") do
add(:remote_id, :integer)
add(:kind, :string)
add(:body, :string)
timestamps()
end
end
end