mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-27 02:10:27 +00:00
19 lines
388 B
Elixir
19 lines
388 B
Elixir
|
defmodule Mobilizon.Repo.Migrations.CreateExports do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:exports) do
|
||
|
add(:file_path, :string)
|
||
|
add(:file_size, :integer)
|
||
|
add(:file_name, :string)
|
||
|
add(:type, :string)
|
||
|
add(:reference, :string)
|
||
|
add(:format, :string)
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
|
||
|
create(unique_index(:exports, [:file_path]))
|
||
|
end
|
||
|
end
|