Files
doable/db/migrate/20251027122702_add_active_to_projects.rb
2025-10-27 13:30:39 +01:00

6 lines
152 B
Ruby

class AddActiveToProjects < ActiveRecord::Migration[8.1]
def change
add_column :projects, :active, :boolean, default: true, null: false
end
end