1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2025-01-05 15:14:05 +00:00
mobilizon/priv/repo/migrations/20180628142835_revert_alter_event_timestamps.exs

18 lines
385 B
Elixir
Raw Normal View History

defmodule Mobilizon.Repo.Migrations.RevertAlterEventTimestampsToDateTimeWithTimeZone do
use Ecto.Migration
def up do
alter table(:events) do
modify :inserted_at, :timestamptz
modify :updated_at, :timestamptz
end
end
def down do
alter table(:events) do
modify :inserted_at, :utc_datetime
modify :updated_at, :utc_datetime
end
end
end