mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-28 19:06:23 +00:00
20cd1bb579
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
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
|