13 lines
231 B
Elixir
13 lines
231 B
Elixir
|
defmodule Slax.Repo.Migrations.CreateRooms do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:rooms) do
|
||
|
add :name, :string, null: false
|
||
|
add :topic, :text
|
||
|
|
||
|
timestamps(type: :utc_datetime)
|
||
|
end
|
||
|
end
|
||
|
end
|