add attributes to projects

This commit is contained in:
Stefan Tollkühn
2025-07-21 16:29:55 +02:00
parent c008e052b2
commit b17c455407
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
class AddColumnsToProjects < ActiveRecord::Migration[8.0]
def change
add_column :projects, :email, :string
add_column :projects, :short_name, :string
add_column :projects, :offer_date, :datetime
add_column :projects, :order_date, :datetime
end
end