defmodule TechRadarEditor.Repo.Migrations.CreateRadarDataPoint do use Ecto.Migration def change do create table(:radar_data_point) do add :quadrant, :integer add :cycle, :integer add :is_new, :boolean, default: false, null: false add :name, :string add :description, :string timestamps() end end end