mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-22 17:20:39 +00:00
16 lines
266 B
Elixir
16 lines
266 B
Elixir
defmodule Eventos.Repo.Migrations.Prerequites do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
execute """
|
|
CREATE TYPE datetimetz AS (
|
|
dt timestamptz,
|
|
tz varchar
|
|
);
|
|
"""
|
|
end
|
|
|
|
def down do
|
|
execute "DROP TYPE IF EXISTS datetimetz;"
|
|
end
|
|
end
|