added parties

This commit is contained in:
2025-11-22 11:46:40 +01:00
parent 65fd97c8c1
commit 03ee9fefec
14 changed files with 232 additions and 2 deletions

View File

@ -0,0 +1,12 @@
class CreateParties < ActiveRecord::Migration[8.0]
def change
create_table :parties do |t|
t.string :title, null: false
t.string :location, null: false
t.date :start_date, null: false
t.time :start_time, null: false
t.string :status, default: 'undefiniert'
t.timestamps
end
end
end