This commit is contained in:
2024-11-17 15:25:49 -05:00
parent 4934c26c9a
commit eab3494b40
16 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class CreateInvitations < ActiveRecord::Migration[7.2]
def change
create_table :invitations do |t|
t.string :name
t.string :attending
t.string :additional_guest
t.timestamps
end
end
end