Initial commit: there's still tons of base Phoenix boilerplate to remove, but the...
[tech-radar-editor.git] / priv / repo / migrations / 20170614032303_create_radar_data_point.exs
1 defmodule TechRadarEditor.Repo.Migrations.CreateRadarDataPoint do
2 use Ecto.Migration
3
4 def change do
5 create table(:radar_data_point) do
6 add :quadrant, :integer
7 add :cycle, :integer
8 add :is_new, :boolean, default: false, null: false
9 add :name, :string
10 add :description, :string
11
12 timestamps()
13 end
14
15 end
16 end