chat-app/backend/db/migrate/20250215043256_create_rooms.rb

10 lines
152 B
Ruby
Raw Normal View History

2025-02-15 22:16:39 +09:00
class CreateRooms < ActiveRecord::Migration[7.1]
def change
create_table :rooms do |t|
t.string :name
t.timestamps
end
end
end