Skip to content

Instantly share code, notes, and snippets.

@bnhansn
Created October 21, 2016 18:51
Show Gist options
  • Save bnhansn/380f2cb7fb3ee9ae73b71667068dcd2b to your computer and use it in GitHub Desktop.
Save bnhansn/380f2cb7fb3ee9ae73b71667068dcd2b to your computer and use it in GitHub Desktop.
defmodule Sling.Repo.Migrations.CreateRoom do
use Ecto.Migration
def change do
create table(:rooms) do
add :name, :string, null: false
add :topic, :string, default: ""
timestamps()
end
create unique_index(:rooms, [:name])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment