mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
14 lines
307 B
Elixir
14 lines
307 B
Elixir
defmodule TeslaMate.Repo.Migrations.CreateUpdates do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:updates) do
|
|
add(:start_date, :utc_datetime, null: false)
|
|
add(:end_date, :utc_datetime)
|
|
add(:version, :string)
|
|
|
|
add(:car_id, references(:cars), null: false)
|
|
end
|
|
end
|
|
end
|