chat-app/backend/db/migrate/20250215045704_create_messages.rb

12 lines
244 B
Ruby
Raw Normal View History

2025-02-15 22:16:39 +09:00
class CreateMessages < ActiveRecord::Migration[7.1]
def change
create_table :messages do |t|
t.text :content
t.string :sender_name
t.references :room, null: false, foreign_key: true
t.timestamps
end
end
end