Created
August 28, 2018 19:11
-
-
Save prio101/a7a6e7970289d3bfbc58faa3d0c54b0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule TodoList.Repo.Migrations.CreateTasks do | |
use Ecto.Migration | |
def change do | |
create table("tasks") do | |
add :task_name, :string | |
add :task_description, :string | |
add :task_status, :string | |
timestamps() | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment