chat-app/backend/db/migrate/20250215043256_create_rooms.rb
2025-02-15 22:16:39 +09:00

9 lines
152 B
Ruby

class CreateRooms < ActiveRecord::Migration[7.1]
def change
create_table :rooms do |t|
t.string :name
t.timestamps
end
end
end