Add fields to models

This commit is contained in:
2025-10-27 13:30:39 +01:00
parent 972d4c24ea
commit 871377a90b
3 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddActiveToProjects < ActiveRecord::Migration[8.1]
def change
add_column :projects, :active, :boolean, default: true, null: false
end
end